sqlite_wasm_rs::c

Function sqlite3_reset

Source
pub unsafe fn sqlite3_reset(stmt: *mut sqlite3_stmt) -> c_int
Expand description

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.

See https://www.sqlite.org/c3ref/reset.html