[sqlalchemy] Re: Query and efficient "on-demand" loading of all rows

2007-08-09 Thread Boris Dušek
Hi Mike, thank you so much for such an extensive answer. It has provided me with much better insight about the topic, so that I can now make a qualified decision on how to proceed. Best regards, Boris On Aug 6, 8:39 pm, Michael Bayer <[EMAIL PROTECTED]> wrote: > On Aug 6, 2007, at 10:42 PM, Bor

[sqlalchemy] Re: Query and efficient "on-demand" loading of all rows

2007-08-06 Thread Michael Bayer
On Aug 6, 2007, at 10:42 PM, Boris Dušek wrote: > > Hi, > > I am using sqlalchemy like this: > > entries = session.query(User) > for entry in entries: > entry.check_it_is_all_right() # includes changing values of > columns if necessary > session.flush() > > It would however suffice that