Lines Matching full:pfetch
194565 sqlite3_stmt *pFetch = 0; /* Statement used to fetch segdir */
194567 rc = fts3SqlStmt(p, SQL_SELECT_SEGDIR, &pFetch, 0);
194570 sqlite3_bind_int64(pFetch, 1, iAbsLevel);
194571 sqlite3_bind_int(pFetch, 2, iIdx);
194572 if( SQLITE_ROW==sqlite3_step(pFetch) ){
194573 const char *aRoot = sqlite3_column_blob(pFetch, 4);
194574 int nRoot = sqlite3_column_bytes(pFetch, 4);
194575 iOldStart = sqlite3_column_int64(pFetch, 1);
194578 rc2 = sqlite3_reset(pFetch);