[sqlalchemy] Sessions, transactions and executing individual statements

2012-01-17 Thread David Beitey
After running a number of arbitrary SQL statements upon a sqlalchemy session, I'm finding that when I attempt to commit the transaction, the changes which are in the session, get lost. I'm sure I'm missing something, but not sure what. Essentially, what I have looks like this: import

Re: [sqlalchemy] Sessions, transactions and executing individual statements

2012-01-17 Thread Michael Bayer
On Jan 17, 2012, at 10:16 PM, David Beitey wrote: After running a number of arbitrary SQL statements upon a sqlalchemy session, I'm finding that when I attempt to commit the transaction, the changes which are in the session, get lost. I'm sure I'm missing something, but not sure what.