Small, Fast, Reliable.
Choose any three.

SQLite C Interface

Reset A Prepared Statement Object

int sqlite3_reset(sqlite3_stmt *pStmt);

The sqlite3_reset() function is called to reset a compiled SQL statement object. back to it's initial state, ready to be re-executed. Any SQL statement variables that had values bound to them using the sqlite3_bind_*() API retain their values. Use sqlite3_clear_bindings() to reset the bindings.

See also lists of Objects, Constants, and Functions.


This page last modified 2007/11/22 00:41:31 UTC