Hi jared,
I'm not sure I'm using the right phrase. I'm not talking about in a
select clause more when defining the class. How do you define a class
where instances refer to other instances of same class? I hadn't got as
far as doing selects, catwalk is giving errors when I try and manage
relationships. I've tried both related and multiple joins
class Person(SQLObject):
name = StringCol(length=255)
friends = RelatedJoin('Person')
class Person(SQLObject):
name = StringCol(length=255)
friends = MultipleJoin('Person')