Context
So I am trying to figure out how to properly override the auto-transaction when using SQLite in Python. When I try and run
c
As @CL. said you have to set isolation level to None. Code example:
None
s = sqlite3.connect("./data.db") s.isolation_level = None try: c = s.cursor() c.execute("begin") ... c.execute("commit") except: c.execute("rollback")