Lines Matching refs:pInsert
190090 RtreeNode *pInsert;
190092 rc = ChooseLeaf(pRtree, p, iHeight, &pInsert);
190095 rc = rtreeInsertCell(pRtree, pInsert, p, iHeight);
190096 rc2 = nodeRelease(pRtree, pInsert);
190152 RtreeNode *pInsert;
190159 rc = ChooseLeaf(pRtree, &cell, (int)pNode->iNode, &pInsert);
190162 rc = rtreeInsertCell(pRtree, pInsert, &cell, (int)pNode->iNode);
190163 rc2 = nodeRelease(pRtree, pInsert);
195241 sqlite3_stmt *pInsert; /* Statement for INSERT operations */
195771 sqlite3_finalize(pIter->pInsert);
195785 pIter->pInsert = 0;
197312 p->dbMain, &pIter->pInsert, &p->zErrmsg,
197403 p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pInsert, pz,
198299 pWriter = pIter->pInsert;
198457 sqlite3_stmt *pInsert = 0;
198462 rc = prepareFreeAndCollectError(p->dbRbu, &pInsert, &p->zErrmsg,
198488 assert( pInsert==0 || rc==SQLITE_OK );
198491 sqlite3_step(pInsert);
198492 rc = sqlite3_finalize(pInsert);
198538 sqlite3_stmt *pInsert = 0;
198564 p->rc = prepareAndCollectError(p->dbMain, &pInsert, &p->zErrmsg,
198572 sqlite3_bind_value(pInsert, i+1, sqlite3_column_value(pSql, i));
198574 sqlite3_step(pInsert);
198575 p->rc = sqlite3_reset(pInsert);
198582 rbuFinalize(p, pInsert);
205017 sqlite3_stmt *pInsert; /* INSERT statement */
205251 rc = sqlite3_prepare_v2(db, (char *)buf.aBuf, buf.nBuf, &p->pInsert, 0);
205270 rc = sessionPrepare(db, &p->pInsert,
205603 assert( p->pDelete && p->pUpdate && p->pInsert && p->pSelect );
205697 rc = sessionBindRow(pIter, sqlite3changeset_new, nCol, 0, p->pInsert);
205700 sqlite3_step(p->pInsert);
205701 rc = sqlite3_reset(p->pInsert);
205888 sqlite3_finalize(sApply.pInsert);
205893 sApply.pInsert = 0;
206019 sqlite3_finalize(sApply.pInsert);
225661 sqlite3_stmt *pInsert = 0; /* Statement to write %_content table */
225663 rc = fts5StorageGetStmt(p, FTS5_STMT_INSERT_CONTENT, &pInsert, 0);
225665 rc = sqlite3_bind_value(pInsert, i, apVal[i]);
225668 sqlite3_step(pInsert);
225669 rc = sqlite3_reset(pInsert);