If I comment out objectstore.flush(), I see

Connection checked out from pool
BEGIN
SELECTs .. one for each row in the csv
COMMIT
connection returned to pool


If I leave objectstore.flush() in-place, I see this:

Connection checked out from pool
BEGIN
SELECTs .. one for each row in the csv
INSERTS .. one for each row in the first csv file
connection returned to pool

...

Traceback.

--

So, where did the COMMIT go, and why wasn't there a subsequent checkout 
from the pool and a BEGIN ?



_______________________________________________
Sqlalchemy-users mailing list
Sqlalchemy-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sqlalchemy-users

Reply via email to