SQLite Forum

classic save possibility
Login
Could you perhaps use [savepoints](https://sqlite.org/lang_savepoint.html) instead? They do nest, where ordinary transactions do not.

Just beware that you cannot use `BEGIN` … `END` inside another transaction, even if it is the savepoint type.