sqlobject.inheritance.tests.test_inheritance_tree module

class sqlobject.inheritance.tests.test_inheritance_tree.Tree1(**kw)[source]

Bases: sqlobject.inheritance.InheritableSQLObject

aprop
childName
j = tree1
q = tree1
class sqlmeta(instance)

Bases: sqlobject.inheritance.InheritableSQLMeta

childClasses = {'Tree2': <class 'sqlobject.inheritance.tests.test_inheritance_tree.Tree2'>, 'Tree3': <class 'sqlobject.inheritance.tests.test_inheritance_tree.Tree3'>}
childName = None
columnDefinitions = {'aprop': <StringCol b4ca38cc aprop>, 'childName': <StringCol b4fbbc8c childName>}
columnList = [<SOStringCol aprop>, <SOStringCol childName default=None>]
columns = {'aprop': <SOStringCol aprop>, 'childName': <SOStringCol childName default=None>}
indexDefinitions = []
indexes = []
joinDefinitions = []
joins = []
parentClass = None
soClass

alias of sqlobject.inheritance.tests.test_inheritance_tree.Tree1

table = 'tree1'
class sqlobject.inheritance.tests.test_inheritance_tree.Tree2(**kw)[source]

Bases: sqlobject.inheritance.tests.test_inheritance_tree.Tree1

aprop
bprop
childName
j = tree2
q = tree2
class sqlmeta(instance)

Bases: sqlobject.declarative.sqlmeta

childClasses = {'Tree4': <class 'sqlobject.inheritance.tests.test_inheritance_tree.Tree4'>, 'Tree5': <class 'sqlobject.inheritance.tests.test_inheritance_tree.Tree5'>}
childName = 'Tree2'
columnDefinitions = {'bprop': <StringCol b4fa69ac bprop>, 'childName': <StringCol b4fe092c childName>}
columnList = [<SOStringCol bprop>, <SOStringCol childName default=None>]
columns = {'bprop': <SOStringCol bprop>, 'childName': <SOStringCol childName default=None>}
indexDefinitions = []
indexes = []
joinDefinitions = []
joins = []
parentClass

alias of sqlobject.inheritance.tests.test_inheritance_tree.Tree1

soClass

alias of sqlobject.inheritance.tests.test_inheritance_tree.Tree2

table = 'tree2'
class sqlobject.inheritance.tests.test_inheritance_tree.Tree3(**kw)[source]

Bases: sqlobject.inheritance.tests.test_inheritance_tree.Tree1

aprop
childName
cprop
j = tree3
q = tree3
class sqlmeta(instance)

Bases: sqlobject.declarative.sqlmeta

childClasses = {}
childName = 'Tree3'
columnDefinitions = {'childName': <StringCol b4c4abcc childName>, 'cprop': <StringCol b50172cc cprop>}
columnList = [<SOStringCol cprop>, <SOStringCol childName default=None>]
columns = {'childName': <SOStringCol childName default=None>, 'cprop': <SOStringCol cprop>}
indexDefinitions = []
indexes = []
joinDefinitions = []
joins = []
parentClass

alias of sqlobject.inheritance.tests.test_inheritance_tree.Tree1

soClass

alias of sqlobject.inheritance.tests.test_inheritance_tree.Tree3

table = 'tree3'
class sqlobject.inheritance.tests.test_inheritance_tree.Tree4(**kw)[source]

Bases: sqlobject.inheritance.tests.test_inheritance_tree.Tree2

bprop
childName
dprop
j = tree4
q = tree4
class sqlmeta(instance)

Bases: sqlobject.declarative.sqlmeta

childClasses = {}
childName = 'Tree4'
columnDefinitions = {'childName': <StringCol b57123cc childName>, 'dprop': <StringCol b567f2ac dprop>}
columnList = [<SOStringCol dprop>, <SOStringCol childName default=None>]
columns = {'childName': <SOStringCol childName default=None>, 'dprop': <SOStringCol dprop>}
indexDefinitions = []
indexes = []
joinDefinitions = []
joins = []
parentClass

alias of sqlobject.inheritance.tests.test_inheritance_tree.Tree2

soClass

alias of sqlobject.inheritance.tests.test_inheritance_tree.Tree4

table = 'tree4'
class sqlobject.inheritance.tests.test_inheritance_tree.Tree5(**kw)[source]

Bases: sqlobject.inheritance.tests.test_inheritance_tree.Tree2

bprop
childName
eprop
j = tree5
q = tree5
class sqlmeta(instance)

Bases: sqlobject.declarative.sqlmeta

childClasses = {}
childName = 'Tree5'
columnDefinitions = {'childName': <StringCol b500ea6c childName>, 'eprop': <StringCol b500e36c eprop>}
columnList = [<SOStringCol eprop>, <SOStringCol childName default=None>]
columns = {'childName': <SOStringCol childName default=None>, 'eprop': <SOStringCol eprop>}
indexDefinitions = []
indexes = []
joinDefinitions = []
joins = []
parentClass

alias of sqlobject.inheritance.tests.test_inheritance_tree.Tree2

soClass

alias of sqlobject.inheritance.tests.test_inheritance_tree.Tree5

table = 'tree5'
sqlobject.inheritance.tests.test_inheritance_tree.test_tree()[source]