On Thu, 19 Jan 2006, Justin Azoff wrote:
Pau Aliagas wrote:
I have two tables:
class handset_brand(SQLObject):
brand = StringCol(alternateID = True, length = 50)
handsets = SQLMultipleJoin('handset')
class handset(SQLObject):
handset_brand = ForeignKey('handset_brand'
Pau Aliagas wrote:
I have two tables:
class handset_brand(SQLObject):
brand = StringCol(alternateID = True, length = 50)
handsets = SQLMultipleJoin('handset')
class handset(SQLObject):
handset_brand = ForeignKey('handset_brand')
model = StringCol(alternateID = T
On Thu, 19 Jan 2006, Pau Aliagas wrote:
Sorry for folowing up myself, there are some mistakes, the question still
remains.
I should have used the dotq syntax in select!
I have two tables:
class handset_brand(SQLObject):
brand = StringCol(alternateID = True, length = 50)
handse
I have two tables:
class handset_brand(SQLObject):
brand = StringCol(alternateID = True, length = 50)
handsets = SQLMultipleJoin('handset')
class handset(SQLObject):
handset_brand = ForeignKey('handset_brand')
model = StringCol(alternateID = True, length = 25)