sqlite3_reset
| Definition: |
include pSQLite.e
sqlite3_reset(sqlite3_stmt pStmt) |
| Description: |
The sqlite3_reset() routine resets a prepared SQL statement so that it can be executed again,
typically with a different set of bindings.
Invoking sqlite3_step(pStmt) after it has returned SQLITE_DONE will result in an SQLITE_MISUSE error, unless sqlite3_reset(pStmt) is invoked beforehand. |
| pwa/p2js: | Not supported |
| Example: | See sqlite3_prepare |