[sqlalchemy] slow import

2009-12-06 Thread andres
to import? Thanks, Andres -- You received this message because you are subscribed to the Google Groups sqlalchemy group. To post to this group, send email to sqlalch...@googlegroups.com. To unsubscribe from this group, send email to sqlalchemy+unsubscr...@googlegroups.com. For more options

[sqlalchemy] mysql connections

2008-10-15 Thread andres
in range(0,16,1)] also, repeated calls to engine.connect() do not return the same connection object in the example above. what else do i need to do in order to force the engine to return the same connection object. -andres --~--~-~--~~~---~--~~ You received

[sqlalchemy] autoflush and mysql

2008-07-02 Thread andres
=engine, autoflush=True, transactional=True)() for i in range(0,100,1): Session.save_or_update(TmpTable(val='blah')) The results of running the test script are: mysql select * from test_db.TmpTable; Empty set (0.00 sec) Am I just not understanding autoflush correctly? Thanks, Andres

[sqlalchemy] Re: autoflush and mysql

2008-07-02 Thread andres
How is a query execution defined? Is Session.save_or_update() classified as a query execution? I expected an autoflush to occur on each call to save_or_update. On Jul 2, 1:09 pm, Michael Bayer [EMAIL PROTECTED] wrote: On Jul 2, 2008, at 3:20 PM, andres wrote: Hi, I'm just starting