Home | History | Annotate | Download | only in dist

Lines Matching refs:pSel

20853   sqlite3_stmt *pSel;
22373 ** to loop through cells that appear to belong to a single table (pSel). */
22379 p1->pSel = recoverPrepare(p, p->dbOut,
22408 recoverFinalize(p, p1->pSel);
22420 sqlite3_stmt *pSel = p1->pSel;
22446 ** SELECT statement p1->pSel. The SELECT statement will then iterate
22448 sqlite3_bind_int64(pSel, 1, iRoot);
22460 if( p->errCode==SQLITE_OK && sqlite3_step(pSel)==SQLITE_ROW ){
22463 i64 iPage = sqlite3_column_int64(pSel, 0);
22464 int iCell = sqlite3_column_int(pSel, 1);
22465 int iField = sqlite3_column_int(pSel, 2);
22466 sqlite3_value *pVal = sqlite3_column_value(pSel, 3);
22516 p1->iRowid = sqlite3_column_int64(pSel, 3);
22534 recoverReset(p, pSel);