Re: [Sqlalchemy-users] join with association

2006-03-06 Thread Shuo Yang
On 3/6/06, Michael Bayer <[EMAIL PROTECTED]> wrote: john -how is this different froma.join(a_x_b).join(b).join(a_x_c).join(c).select().execute()?Man, shame on me.  No difference.  Well, difference is this work!  :D  On Mar 6, 2006, at 11:56 AM, Shuo Yang wrote:> --

Re: [Sqlalchemy-users] join with association

2006-03-06 Thread Michael Bayer
john - how is this different from a.join(a_x_b).join(b).join(a_x_c).join(c).select().execute() ? On Mar 6, 2006, at 11:56 AM, Shuo Yang wrote: --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that

[Sqlalchemy-users] join with association

2006-03-06 Thread Shuo Yang
Hi:I'm trying to make a patch to make join work with many-to-many relationships via an association table.  This works for something like: a join b, but is having ambiguous column name problems if you attempt to do something like: a join b join c. Patch attached as well as a test script illustrating