Re: [SQLObject] Using select with MultipleJoin

2010-07-05 Thread Oleg Broytman
On Mon, Jul 05, 2010 at 11:20:31AM +0200, Till Maas wrote: > Oleg Broytman wrote: > >MultipleJoin works together with a corresponding ForeignKey. .select() > > doesn't take them into account. So either you iterate over Packages row by > > row and use .builds attribute of every row, or construct

Re: [SQLObject] Using select with MultipleJoin

2010-07-05 Thread Till Maas
Oleg Broytman wrote: > On Sat, Jul 03, 2010 at 11:53:00AM +0200, Till Maas wrote: >> class PackageUpdate(SQLObject): >> title= UnicodeCol(notNone=True, alternateID=True) >> builds = RelatedJoin("PackageBuild")# >> >> class PackageBuild(SQLObject): >> nvr