[sqlalchemy] Re: map several objects at once ?

2011-11-22 Thread Wouter Overmeire
maybe this helps: querying-with-joinshttp://www.sqlalchemy.org/docs/orm/tutorial.html#querying-with-joins -- You received this message because you are subscribed to the Google Groups sqlalchemy group. To view this discussion on the web visit

[sqlalchemy] Re: Relationship operator vs join and filter

2011-03-23 Thread Wouter Overmeire
On Mar 22, 8:35 am, Wouter Overmeire wouter.overme...@scarlet.be wrote: On Mar 21, 11:42 pm, Michael Bayer mike...@zzzcomputing.com wrote: On Mar 21, 2011, at 7:21 AM, Wouter Overmeire wrote: New to sql and sqlalchemy. Using an in memory sqlite database. Trying to do some

[sqlalchemy] Re: Relationship operator vs join and filter

2011-03-22 Thread Wouter Overmeire
On Mar 21, 11:42 pm, Michael Bayer mike...@zzzcomputing.com wrote: On Mar 21, 2011, at 7:21 AM, Wouter Overmeire wrote: New to sql and sqlalchemy. Using an in memory sqlite database. Trying to do some queries based on the examples in the sqlalchemy documentation. I have

[sqlalchemy] Relationship operator vs join and filter

2011-03-21 Thread Wouter Overmeire
New to sql and sqlalchemy. Using an in memory sqlite database. Trying to do some queries based on the examples in the sqlalchemy documentation. I have classes: Tag, Article, Author, Award article -- tag: many to many article -- author: many to many (so one article can have multiple authors)