Lines Matching refs:pDelete

151937   Select *pDelete = 0;  /* Chain of simple selects to delete */  local
152035 pDelete = p->pPrior;
152058 if( pDelete ){
152059 sqlite3ParserAddCleanup(pParse, sqlite3SelectDeleteGeneric, pDelete);
166352 Expr *pDelete; /* Local copy of OR clause term */ local
166357 pDelete = pOrExpr = sqlite3ExprDup(db, pOrExpr, 0);
166359 sqlite3ExprDelete(db, pDelete);
166476 sqlite3ExprDelete(db, pDelete);
206858 sqlite3_stmt *pDelete; /* SQL statement to delete rows */ local
206859 rc = fts3SqlStmt(p, SQL_DELETE_SEGMENTS_RANGE, &pDelete, 0);
206861 sqlite3_bind_int64(pDelete, 1, pSeg->iStartBlock);
206862 sqlite3_bind_int64(pDelete, 2, pSeg->iEndBlock);
206863 sqlite3_step(pDelete);
206864 rc = sqlite3_reset(pDelete);
206894 sqlite3_stmt *pDelete = 0; /* SQL statement to delete rows */ local
206905 rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_RANGE, &pDelete, 0);
206907 sqlite3_bind_int64(pDelete, 1, getAbsoluteLevel(p, iLangid, iIndex, 0));
206908 sqlite3_bind_int64(pDelete, 2,
206913 rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_LEVEL, &pDelete, 0);
206916 pDelete, 1, getAbsoluteLevel(p, iLangid, iIndex, iLevel)
206922 sqlite3_step(pDelete);
206923 rc = sqlite3_reset(pDelete);
208851 sqlite3_stmt *pDelete = 0; /* DELETE statement */ local
208853 rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_ENTRY, &pDelete, 0);
208855 sqlite3_bind_int64(pDelete, 1, iAbsLevel);
208856 sqlite3_bind_int(pDelete, 2, iIdx);
208857 sqlite3_step(pDelete);
208858 rc = sqlite3_reset(pDelete);
226592 sqlite3_stmt *pDelete; /* Statement for DELETE ops */ member
227157 sqlite3_finalize(pIter->pDelete);
227171 pIter->pDelete = 0;
228710 p->dbMain, &pIter->pDelete, &p->zErrmsg,
228805 p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pDelete, pz,
229716 pWriter = pIter->pDelete;
238090 sqlite3_stmt *pDelete; /* DELETE statement */ member
238334 rc = sessionPrepare(db, &p->pDelete, &p->zErr, (char*)buf.aBuf);
238420 rc = sessionPrepare(db, &p->pDelete, 0,
238753 assert( p->pDelete && p->pInsert && p->pSelect );
238773 rc = sessionBindRow(pIter, sqlite3changeset_old, nCol, abPK, p->pDelete);
238774 if( rc==SQLITE_OK && sqlite3_bind_parameter_count(p->pDelete)>nCol ){
238775 rc = sqlite3_bind_int(p->pDelete, nCol+1, (pbRetry==0 || abPK));
238779 sqlite3_step(p->pDelete);
238780 rc = sqlite3_reset(p->pDelete);
238908 sqlite3changeset_new, pApply->nCol, pApply->abPK, pApply->pDelete);
238909 sqlite3_bind_int(pApply->pDelete, pApply->nCol+1, 1);
238912 sqlite3_step(pApply->pDelete);
238913 rc = sqlite3_reset(pApply->pDelete);
239141 pUp, sqlite3changeset_old, pApply->nCol, pApply->abPK, pApply->pDelete
239143 sqlite3_bind_int(pApply->pDelete, pApply->nCol+1, 1);
239146 sqlite3_step(pApply->pDelete);
239147 rc = sqlite3_reset(pApply->pDelete);
239368 sqlite3_finalize(sApply.pDelete);
239372 sApply.pDelete = 0;
239511 sqlite3_finalize(sApply.pDelete);