I'm using ironpython 2.7.3 and sqlalchemy(0.7.10) on my windows environment I've set up the database in sqlite using sqlalchemy declarative syntax, this works fine But when I try to save some data to the db using commit() My program suddenly hang but the actual data has been saved to the db
This is what the debug looks like 2013-08-01 17:38:19,239 DEBUG sqlalchemy.pool.NullPool Created new connection <Connection object at 0x0000000000000046> 2013-08-01 17:38:19,521 DEBUG sqlalchemy.pool.NullPool Connection <Connection object at 0x0000000000000046> checked out from pool 2013-08-01 17:38:19,531 INFO sqlalchemy.engine.base.Engine BEGIN (implicit) .......the sql command...... 2013-08-01 17:38:20,185 INFO sqlalchemy.engine.base.Engine COMMIT 2013-08-01 17:38:20,212 DEBUG sqlalchemy.pool.NullPool Connection <Connection object at 0x0000000000000046> being returned to pool 2013-08-01 17:38:20,222 DEBUG sqlalchemy.pool.NullPool Closing connection <Connection object at 0x0000000000000046> Somehow it's stuck in here..... -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/groups/opt_out.
