stmt_scanstatus_reset method

void stmt_scanstatus_reset(
  1. PtrStmt arg1
)
inherited

Implementation

void stmt_scanstatus_reset(PtrStmt arg1) {
  if (_h_sqlite3_stmt_scanstatus_reset == null) {
    throw dbsql.DatabaseException(
        'API sqlite3_stmt_scanstatus_reset is not available, You need to enable it during library build.');
  }
  return _h_sqlite3_stmt_scanstatus_reset!(arg1);
}