Lines Matching refs:pInsert
196899 RtreeNode *pInsert;
196901 rc = ChooseLeaf(pRtree, p, iHeight, &pInsert);
196904 rc = rtreeInsertCell(pRtree, pInsert, p, iHeight);
196905 rc2 = nodeRelease(pRtree, pInsert);
196961 RtreeNode *pInsert;
196968 rc = ChooseLeaf(pRtree, &cell, (int)pNode->iNode, &pInsert);
196971 rc = rtreeInsertCell(pRtree, pInsert, &cell, (int)pNode->iNode);
196972 rc2 = nodeRelease(pRtree, pInsert);
202070 sqlite3_stmt *pInsert; /* Statement for INSERT operations */
202600 sqlite3_finalize(pIter->pInsert);
202614 pIter->pInsert = 0;
204145 p->dbMain, &pIter->pInsert, &p->zErrmsg,
204236 p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pInsert, pz,
205168 pWriter = pIter->pInsert;
205326 sqlite3_stmt *pInsert = 0;
205331 rc = prepareFreeAndCollectError(p->dbRbu, &pInsert, &p->zErrmsg,
205357 assert( pInsert==0 || rc==SQLITE_OK );
205360 sqlite3_step(pInsert);
205361 rc = sqlite3_finalize(pInsert);
205407 sqlite3_stmt *pInsert = 0;
205433 p->rc = prepareAndCollectError(p->dbMain, &pInsert, &p->zErrmsg,
205441 sqlite3_bind_value(pInsert, i+1, sqlite3_column_value(pSql, i));
205443 sqlite3_step(pInsert);
205444 p->rc = sqlite3_reset(pInsert);
205451 rbuFinalize(p, pInsert);
212206 sqlite3_stmt *pInsert; /* INSERT statement */
212507 rc = sqlite3_prepare_v2(db, (char *)buf.aBuf, buf.nBuf, &p->pInsert, 0);
212526 rc = sessionPrepare(db, &p->pInsert,
212848 assert( p->pDelete && p->pInsert && p->pSelect );
212941 rc = sessionBindRow(pIter, sqlite3changeset_new, nCol, 0, p->pInsert);
212944 sqlite3_step(p->pInsert);
212945 rc = sqlite3_reset(p->pInsert);
213135 sqlite3_finalize(sApply.pInsert);
213139 sApply.pInsert = 0;
213265 sqlite3_finalize(sApply.pInsert);
233381 sqlite3_stmt *pInsert = 0; /* Statement to write %_content table */
233383 rc = fts5StorageGetStmt(p, FTS5_STMT_INSERT_CONTENT, &pInsert, 0);
233385 rc = sqlite3_bind_value(pInsert, i, apVal[i]);
233388 sqlite3_step(pInsert);
233389 rc = sqlite3_reset(pInsert);