Home
last modified time | relevance | path

Searched refs:pUpdate (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.c208879 sqlite3_stmt *pUpdate = 0; /* Update statement to modify idx values */ local
208903 rc = fts3SqlStmt(p, SQL_SHIFT_SEGDIR_ENTRY, &pUpdate, 0);
208906 sqlite3_bind_int64(pUpdate, 2, iAbsLevel);
208913 sqlite3_bind_int(pUpdate, 3, aIdx[i]);
208914 sqlite3_bind_int(pUpdate, 1, i);
208915 sqlite3_step(pUpdate);
208916 rc = sqlite3_reset(pUpdate);
226536 sqlite3_stmt *pUpdate; /* Last update statement (or NULL) */ member
227162 sqlite3_finalize(pUp->pUpdate);
228945 *ppStmt = pUp->pUpdate;
[all …]