Re: [sqlalchemy] Re: all

2012-07-12 Thread burgiduroy
So which is the best practice? for row in query or for row in query.all() On Thu, Jul 12, 2012 at 8:54 PM, Michael Bayer mike...@zzzcomputing.comwrote: On Jul 11, 2012, at 8:27 PM, Gunnlaugur Briem wrote: Hi burgiduroy, On Wednesday, 11 July 2012 15:24:59 UTC, burgiduroy wrote

[sqlalchemy] all

2012-07-11 Thread burgiduroy
Are there any performance difference between the two? for row in query_object.all(): do_something() AND for row in query_object: do_something() -- You received this message because you are subscribed to the Google Groups sqlalchemy group. To post to this group, send email to