get_autocommit method

int get_autocommit(
  1. PtrSqlite3 arg1
)
inherited

Implementation

int get_autocommit(PtrSqlite3 arg1) {
  if (libVersionNumber < 3002002) {
    throw dbsql.DatabaseException('API sqlite3_get_autocommit is not available before 3.2.2');
  }
  return _h_sqlite3_get_autocommit!(arg1);
}