bpo-28518: Start a transaction implicitly before a DML statement (#245)

Patch by Aviv Palivoda.
This commit is contained in:
Berker Peksag 2017-02-26 18:22:38 +03:00 committed by GitHub
parent 46ce7599af
commit 4a926caf8e
5 changed files with 24 additions and 11 deletions

View file

@ -38,7 +38,7 @@ typedef struct
sqlite3_stmt* st;
PyObject* sql;
int in_use;
int is_ddl;
int is_dml;
PyObject* in_weakreflist; /* List of weak references */
} pysqlite_Statement;