On Jul 28, 2005, at 4:29 AM, Edwin Knoppert wrote:

And i wish for a test if the transaction is already set or not, without using a callback.


You already can:

"
  int sqlite3_get_autocommit(sqlite3*);
Test to see whether or not the database connection is in autocommit mode. Return TRUE if it is and FALSE if not. Autocommit mode is on by default. Autocommit is disabled by a BEGIN statement and reenabled by the next COMMIT or ROLLBACK.

"

Reply via email to