Lines Matching refs:pInsert

203900     RtreeNode *pInsert;
203902 rc = ChooseLeaf(pRtree, p, iHeight, &pInsert);
203905 rc = rtreeInsertCell(pRtree, pInsert, p, iHeight);
203906 rc2 = nodeRelease(pRtree, pInsert);
203962 RtreeNode *pInsert;
203969 rc = ChooseLeaf(pRtree, &cell, (int)pNode->iNode, &pInsert);
203972 rc = rtreeInsertCell(pRtree, pInsert, &cell, (int)pNode->iNode);
203973 rc2 = nodeRelease(pRtree, pInsert);
209097 sqlite3_stmt *pInsert; /* Statement for INSERT operations */
209629 sqlite3_finalize(pIter->pInsert);
209643 pIter->pInsert = 0;
211174 p->dbMain, &pIter->pInsert, &p->zErrmsg,
211265 p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pInsert, pz,
212172 pWriter = pIter->pInsert;
212330 sqlite3_stmt *pInsert = 0;
212335 rc = prepareFreeAndCollectError(p->dbRbu, &pInsert, &p->zErrmsg,
212361 assert( pInsert==0 || rc==SQLITE_OK );
212364 sqlite3_step(pInsert);
212365 rc = sqlite3_finalize(pInsert);
212411 sqlite3_stmt *pInsert = 0;
212437 p->rc = prepareAndCollectError(p->dbMain, &pInsert, &p->zErrmsg,
212445 sqlite3_bind_value(pInsert, i+1, sqlite3_column_value(pSql, i));
212447 sqlite3_step(pInsert);
212448 p->rc = sqlite3_reset(pInsert);
212455 rbuFinalize(p, pInsert);
219288 sqlite3_stmt *pInsert; /* INSERT statement */
219562 ** If successful, SQLITE_OK is returned and SessionApplyCtx.pInsert is left
219589 rc = sqlite3_prepare_v2(db, (char *)buf.aBuf, buf.nBuf, &p->pInsert, 0);
219608 rc = sessionPrepare(db, &p->pInsert,
219930 assert( p->pDelete && p->pInsert && p->pSelect );
220023 rc = sessionBindRow(pIter, sqlite3changeset_new, nCol, 0, p->pInsert);
220026 sqlite3_step(p->pInsert);
220027 rc = sqlite3_reset(p->pInsert);
220217 sqlite3_finalize(sApply.pInsert);
220221 sApply.pInsert = 0;
220347 sqlite3_finalize(sApply.pInsert);
240469 sqlite3_stmt *pInsert = 0; /* Statement to write %_content table */
240471 rc = fts5StorageGetStmt(p, FTS5_STMT_INSERT_CONTENT, &pInsert, 0);
240473 rc = sqlite3_bind_value(pInsert, i, apVal[i]);
240476 sqlite3_step(pInsert);
240477 rc = sqlite3_reset(pInsert);