Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c250457 sqlite3_stmt *pIdxSelect; member
252758 if( p->pIdxSelect==0 ){
252760 fts5IndexPrepareStmt(p, &p->pIdxSelect, sqlite3_mprintf(
252766 return p->pIdxSelect;
252786 sqlite3_stmt *pIdxSelect = 0; local
252795 pIdxSelect = fts5IdxSelectStmt(p);
252797 sqlite3_bind_int(pIdxSelect, 1, pSeg->iSegid);
252798 sqlite3_bind_blob(pIdxSelect, 2, pTerm, nTerm, SQLITE_STATIC);
252799 if( SQLITE_ROW==sqlite3_step(pIdxSelect) ){
252800 i64 val = sqlite3_column_int(pIdxSelect, 0);
[all …]