stmt_scanstatus method

int stmt_scanstatus(
  1. PtrStmt pStmt,
  2. int idx,
  3. int iScanStatusOp,
  4. PtrVoid pOut,
)
inherited

Implementation

int stmt_scanstatus(PtrStmt pStmt, int idx, int iScanStatusOp, PtrVoid pOut) {
  if (libVersionNumber < 3008008) {
    throw dbsql.DatabaseException('API sqlite3_stmt_scanstatus is not available before 3.8.8');
  }
  if (_h_sqlite3_stmt_scanstatus! == null) {
    throw dbsql.DatabaseException(
        'API sqlite3_stmt_scanstatus is not available, You need to enable it during library build.');
  }
  return _h_sqlite3_stmt_scanstatus!(pStmt, idx, iScanStatusOp, pOut);
}