[SQLObject] Related Join

2006-08-03 Thread Ian Wilson
Hello SQLObject and friends, If I have the two classes: class Product(InheritableSQLObject): name = StringCol(length=255, alternateID=True) description = StringCol() archived = BoolCol(default=False) options = RelatedJoin('ProductOption', orderBy="name") class ProductOption(SQLObject):

Re: [SQLObject] Inheritance

2006-07-10 Thread Ian Wilson
Hello again, Sorry, as usual too quick to post. I found it in sqlobject.inheritance as it shows IN the example after I thought long and hard and decided to not be stupid...how embarassing. I'll try it out, thanks. -Ian On 7/10/06, Ian Wilson <[EMAIL PROTECTED]> wrote: > Hell

[SQLObject] Inheritance

2006-07-10 Thread Ian Wilson
Hello, I found this inheritance document(http://www.sqlobject.org/Inheritance.html) on the sqlobject site. It looks fantastic. Which version of sqlobject does this apply to? I have something like SQLObject-0.7.1dev_r1457 installed. The document does not seem to say and I can't seem to find th