vote up 0 vote down star

I'm writing an application in python using sqlalchemy (and Elixir) with sqlite as the database backend. I start a new transaction using the code session.begin_transaction(), but when I call session.rollback() I get the following error:

sqlalchemy.exceptions.OperationalError: (OperationalError) no such savepoint: sa_savepoint_1 u'ROLLBACK TO SAVEPOINT sa_savepoint_1' []

I also get a similar error calling session.commit(). From what I can tell, sqlite supports SAVEPOINTS (http://www.sqlite.org/lang_savepoint.html).

So, how do I get nested transactions to work?

flag
I could more easily answer this if you create a demonstration snippet of code. You can do so easily using the sqlite :memory: database, which creates an in-memory DB. – Ken Nov 9 at 3:19

1 Answer

vote up 0 vote down

SQLAlchemy uses pysqlite to interact with an SQLite database, if I'm not mistaken pysqlite will by default wrap up any query you send it in a transaction.

The answer might lie in correctly setting the isolation level when you connect.

Some discussion about that over here

link|flag
I want nested transactions, where you can rollback without losing anything that has changed in the outer transaction. I'm not sure that pysqlite can do that automatically. Are you suggesting that using SAVEPOINTS are not possible, or just suggesting another (possible) way to solve the problem? – Jon Oct 31 at 17:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.