Re: [sqlalchemy] dialect sensible declaration

2012-07-11 Thread alex bodnaru
hello michael, now it works. i also had to add uselist=False. i tried it the longest way possible, by adding a Pool first_connect listener, but this was not really needed. just the uselist. thanks a lot, alex On 07/09/2012 04:25 PM, Michael Bayer wrote: On Jul 9, 2012, at 4:48 AM, alex

[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

[sqlalchemy] Re: all

2012-07-11 Thread Gunnlaugur Briem
Hi burgiduroy, On Wednesday, 11 July 2012 15:24:59 UTC, burgiduroy wrote: Are there any performance difference between the two? for row in query_object.all(): do_something() AND for row in query_object: do_something() The first fetches and processes all rows in one go before