Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c208561 sqlite3_stmt *pUpdate = 0; /* Update statement to modify idx values */ local
208585 rc = fts3SqlStmt(p, SQL_SHIFT_SEGDIR_ENTRY, &pUpdate, 0);
208588 sqlite3_bind_int64(pUpdate, 2, iAbsLevel);
208595 sqlite3_bind_int(pUpdate, 3, aIdx[i]);
208596 sqlite3_bind_int(pUpdate, 1, i);
208597 sqlite3_step(pUpdate);
208598 rc = sqlite3_reset(pUpdate);
226153 sqlite3_stmt *pUpdate; /* Last update statement (or NULL) */ member
226768 sqlite3_finalize(pUp->pUpdate);
228551 *ppStmt = pUp->pUpdate;
[all …]