Skip to main content

sqlite3_step

Function sqlite3_step 

Source
#[unsafe(no_mangle)]
pub unsafe extern "C" fn sqlite3_step(stmt: *mut Sqlite3Stmt) -> c_int
Expand description

Step through a prepared statement.

Returns SQLITE_ROW when a result row is available, SQLITE_DONE when execution is complete.

ยงSafety

stmt must be a valid handle from sqlite3_prepare_v2.