Re: [sqlalchemy] Returning multiple table models on join query instead of keyed tuple

2013-10-17 Thread Michael Bayer
its totally working, just grab 0.9 from github. On Oct 17, 2013, at 2:35 PM, John Kida wrote: > The Bundle option sounds perfect, there is really no need for the other attrs > to be None, i was just trying to explain the idea. Is there a nightly > avaliable of 0.9 that I can grab that has a p

Re: [sqlalchemy] Returning multiple table models on join query instead of keyed tuple

2013-10-17 Thread John Kida
The Bundle option sounds perfect, there is really no need for the other attrs to be None, i was just trying to explain the idea. Is there a nightly avaliable of 0.9 that I can grab that has a partially working version of Bundle? -- You received this message because you are subscribed to the Go

Re: [sqlalchemy] Returning multiple table models on join query instead of keyed tuple

2013-10-17 Thread Michael Bayer
On Oct 17, 2013, at 12:51 PM, John Kida wrote: > I am trying find a nice automatic way to serialize my sql alchemy result sets > when doing joins. > > Lets say i have the following 2 models, User and Message: > class User(Base): > __tablename__ = '...' > id = Column(...) > name =

[sqlalchemy] Returning multiple table models on join query instead of keyed tuple

2013-10-17 Thread John Kida
I am trying find a nice automatic way to serialize my sql alchemy result sets when doing joins. Lets say i have the following 2 models, User and Message: class User(Base): __tablename__ = '...' id = Column(...) name = Column(...) last_login Column(...) and class Message(Base):