#[unsafe(no_mangle)]pub unsafe extern "C" fn sqlite3_step(stmt: *mut Sqlite3Stmt) -> c_intExpand 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.