Lines Matching refs:pSel
12766 sqlite3_stmt *pSel;
14283 ** to loop through cells that appear to belong to a single table (pSel). */
14289 p1->pSel = recoverPrepare(p, p->dbOut,
14318 recoverFinalize(p, p1->pSel);
14330 sqlite3_stmt *pSel = p1->pSel;
14356 ** SELECT statement p1->pSel. The SELECT statement will then iterate
14358 sqlite3_bind_int64(pSel, 1, iRoot);
14370 if( p->errCode==SQLITE_OK && sqlite3_step(pSel)==SQLITE_ROW ){
14373 i64 iPage = sqlite3_column_int64(pSel, 0);
14374 int iCell = sqlite3_column_int(pSel, 1);
14375 int iField = sqlite3_column_int(pSel, 2);
14376 sqlite3_value *pVal = sqlite3_column_value(pSel, 3);
14426 p1->iRowid = sqlite3_column_int64(pSel, 3);
14442 recoverReset(p, pSel);