get_autocommit method
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);
}