TXN_WRITE top-level constant
int
const TXN_WRITE
The SQLITE_TXN_WRITE state means that the database is currently in a write transaction.
Content has been written to the database file but has not yet committed. The transaction state will change to to SQLITE_TXN_NONE at the next ROLLBACK or COMMIT.
Implementation
const TXN_WRITE = 2;