stmt_busy method

int stmt_busy(
  1. PtrStmt arg1
)
inherited

Implementation

int stmt_busy(PtrStmt arg1) {
  if (libVersionNumber < 3007010) {
    throw dbsql.DatabaseException('API sqlite3_stmt_busy is not available before 3.7.10');
  }
  return _h_sqlite3_stmt_busy!(arg1);
}