Message286308
You can set isolation_level = None in sqlite3.connect() parameters, then sqlite3 module will not begin a transaction implicitly.
Another way is disabling auto-begin-transaction temporarily:
sql.isolation_level = None
sql.execute('VACUUM')
sql.isolation_level = '' # <- note that this is the default value of isolation_level |
|
Date |
User |
Action |
Args |
2017-01-26 12:24:41 | malin | set | recipients:
+ malin, ghaering, jaraco, ned.deily, r.david.murray, socketpair, berker.peksag, serhiy.storchaka, xiang.zhang, palaviv, Big Stone, fschulze, callidomus, Cédric Bellegarde |
2017-01-26 12:24:41 | malin | set | messageid: <1485433481.79.0.0219140835909.issue28518@psf.upfronthosting.co.za> |
2017-01-26 12:24:41 | malin | link | issue28518 messages |
2017-01-26 12:24:41 | malin | create | |
|