sqlobject.tests.test_cyclic_reference module

class sqlobject.tests.test_cyclic_reference.SOTestCyclicRefA(**kw)[source]

Bases: sqlobject.main.SQLObject

blobcol
fkeyb
fkeybID
j = test_cyclic_ref_a_table
name
number
q = test_cyclic_ref_a_table
short
so_time
class sqlmeta(instance)[source]

Bases: sqlobject.main.sqlmeta

childName = None
columnDefinitions = {'short': <StringCol b3f6aaecL short>, 'so_time': <DateTimeCol b3f6a38cL so_time>, 'fkeybID': <ForeignKey b3f6acacL fkeyb>, 'number': <IntCol b3f6a26cL number>, 'blobcol': <BLOBCol b3f6ab0cL blobcol>, 'name': <StringCol b3a7fc0cL name>}
columnList = [<SOStringCol name>, <SOIntCol number>, <SODateTimeCol so_time>, <SOStringCol short>, <SOBLOBCol blobcol>, <SOForeignKey fkeybID connected to SOTestCyclicRefB>]
columns = {'short': <SOStringCol short>, 'so_time': <SODateTimeCol so_time>, 'fkeybID': <SOForeignKey fkeybID connected to SOTestCyclicRefB>, 'number': <SOIntCol number>, 'blobcol': <SOBLOBCol blobcol>, 'name': <SOStringCol name>}
idName = 'test_id_here'
indexDefinitions = []
indexes = []
joinDefinitions = []
joins = []
soClass

alias of SOTestCyclicRefA

style = <sqlobject.styles.MixedCaseUnderscoreStyle object>
table = 'test_cyclic_ref_a_table'
class sqlobject.tests.test_cyclic_reference.SOTestCyclicRefB(**kw)[source]

Bases: sqlobject.main.SQLObject

blobcol
fkeya
fkeyaID
j = test_cyclic_ref_b_table
name
number
q = test_cyclic_ref_b_table
short
so_time
class sqlmeta(instance)[source]

Bases: sqlobject.main.sqlmeta

childName = None
columnDefinitions = {'fkeyaID': <ForeignKey b3add76cL fkeya>, 'short': <StringCol b54e902cL short>, 'so_time': <DateTimeCol b4500aecL so_time>, 'number': <IntCol b5813c6cL number>, 'blobcol': <BLOBCol b56c6dacL blobcol>, 'name': <StringCol b4a2172cL name>}
columnList = [<SOStringCol name>, <SOIntCol number>, <SODateTimeCol so_time>, <SOStringCol short>, <SOBLOBCol blobcol>, <SOForeignKey fkeyaID connected to SOTestCyclicRefA>]
columns = {'fkeyaID': <SOForeignKey fkeyaID connected to SOTestCyclicRefA>, 'short': <SOStringCol short>, 'so_time': <SODateTimeCol so_time>, 'number': <SOIntCol number>, 'blobcol': <SOBLOBCol blobcol>, 'name': <SOStringCol name>}
idName = 'test_id_here'
indexDefinitions = []
indexes = []
joinDefinitions = []
joins = []
soClass

alias of SOTestCyclicRefB

style = <sqlobject.styles.MixedCaseUnderscoreStyle object>
table = 'test_cyclic_ref_b_table'
sqlobject.tests.test_cyclic_reference.test_cyclic_reference()[source]