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