Lines Matching refs:pInsert
216349 RtreeNode *pInsert;
216356 rc = ChooseLeaf(pRtree, &cell, (int)pNode->iNode, &pInsert);
216359 rc = rtreeInsertCell(pRtree, pInsert, &cell, (int)pNode->iNode);
216360 rc2 = nodeRelease(pRtree, pInsert);
221562 sqlite3_stmt *pInsert; /* Statement for INSERT operations */
222116 sqlite3_finalize(pIter->pInsert);
222130 pIter->pInsert = 0;
223662 p->dbMain, &pIter->pInsert, &p->zErrmsg,
223753 p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pInsert, pz,
224678 pWriter = pIter->pInsert;
224836 sqlite3_stmt *pInsert = 0;
224841 rc = prepareFreeAndCollectError(p->dbRbu, &pInsert, &p->zErrmsg,
224867 assert( pInsert==0 || rc==SQLITE_OK );
224870 sqlite3_step(pInsert);
224871 rc = sqlite3_finalize(pInsert);
224917 sqlite3_stmt *pInsert = 0;
224943 p->rc = prepareAndCollectError(p->dbMain, &pInsert, &p->zErrmsg,
224951 sqlite3_bind_value(pInsert, i+1, sqlite3_column_value(pSql, i));
224953 sqlite3_step(pInsert);
224954 p->rc = sqlite3_reset(pInsert);
224961 rbuFinalize(p, pInsert);
232416 sqlite3_stmt *pInsert; /* INSERT statement */
232694 ** If successful, SQLITE_OK is returned and SessionApplyCtx.pInsert is left
232721 rc = sqlite3_prepare_v2(db, (char *)buf.aBuf, buf.nBuf, &p->pInsert, 0);
232740 rc = sessionPrepare(db, &p->pInsert,
233080 assert( p->pDelete && p->pInsert && p->pSelect );
233173 rc = sessionBindRow(pIter, sqlite3changeset_new, nCol, 0, p->pInsert);
233176 sqlite3_step(p->pInsert);
233177 rc = sqlite3_reset(p->pInsert);
233374 sqlite3_finalize(sApply.pInsert);
233378 sApply.pInsert = 0;
233511 sqlite3_finalize(sApply.pInsert);
258558 sqlite3_stmt *pInsert = 0; /* Statement to write %_content table */
258563 rc = fts5StorageGetStmt(p, FTS5_STMT_INSERT_CONTENT+bReplace, &pInsert, 0);
258564 if( pInsert ) sqlite3_clear_bindings(pInsert);
258567 sqlite3_bind_value(pInsert, 1, apVal[1]);
258581 sqlite3_bind_value(pInsert, pConfig->nCol + i,
258594 sqlite3_bind_text(pInsert, i, pText, nText, SQLITE_TRANSIENT);
258597 sqlite3_bind_text(pInsert, iLoc, pLoc, nLoc, SQLITE_TRANSIENT);
258604 rc = sqlite3_bind_value(pInsert, i, pVal);
258608 sqlite3_step(pInsert);
258609 rc = sqlite3_reset(pInsert);