On Wed, Aug 12, 2009 at 11:25:58AM +0100, Miguel Tavares wrote:
> You stated in a previous email (one minute before this one) that
> sqlobject doesn't support multiple intermediate tables.

   I meant - for a single RelatedJoin. But you can crate as many different
joins - just name the table explicitly:

class A (SQLObject):
    B1 = sqlobject.RelatedJoin ('B', intermediateTable='a1_b1')
    B2 = sqlobject.RelatedJoin ('B', intermediateTable='a2_b2')

class B (SQLObject):
    A1 = sqlobject.RelatedJoin ('A', intermediateTable='a1_b1')
    A2 = sqlobject.RelatedJoin ('A', intermediateTable='a2_b2')

Oleg.
-- 
     Oleg Broytmann            http://phd.pp.ru/            p...@phd.pp.ru
           Programmers don't die, they just GOSUB without RETURN.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
sqlobject-discuss mailing list
sqlobject-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sqlobject-discuss

Reply via email to