pub unsafe fn sqlite3_reset(stmt: *mut sqlite3_stmt) -> c_int
Expand description
C interface definition of sqlite
Called to reset a [prepared statement] object back to its 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.