*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: sqlite3_reset | Section: 3 | Source: NetBSD | File: sqlite3_reset.3
SQLITE3_RESET(3) FreeBSD Library Functions Manual SQLITE3_RESET(3) NAME sqlite3_reset - Reset A Prepared Statement Object SYNOPSIS int sqlite3_reset(sqlite3_stmt *pStmt); DESCRIPTION The sqlite3_reset() function is 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. The sqlite3_reset(S) interface resets the prepared statement S back to the beginning of its program. If the most recent call to sqlite3_step(S) for the prepared statement S returned SQLITE_ROW or SQLITE_DONE, or if sqlite3_step(S) has never before been called on S, then sqlite3_reset(S) returns SQLITE_OK. If the most recent call to sqlite3_step(S) for the prepared statement S indicated an error, then sqlite3_reset(S) returns an appropriate error code. The sqlite3_reset(S) interface does not change the values of any bindings on the prepared statement S. SEE ALSO sqlite3_stmt(3), sqlite3_bind_blob(3), sqlite3_clear_bindings(3), SQLITE_OK(3) FreeBSD 14.1-RELEASE-p8 December 19, 2018 FreeBSD 14.1-RELEASE-p8

Navigation Options