Lines Matching refs:pUpdate
233 sqlite3_stmt *pUpdate; /* Last update statement (or NULL) */ member
826 sqlite3_finalize(pUp->pUpdate); in rbuObjIterClearStatements()
2608 *ppStmt = pUp->pUpdate; in rbuGetUpdateStmt()
2618 sqlite3_finalize(pUp->pUpdate); in rbuGetUpdateStmt()
2619 pUp->pUpdate = 0; in rbuGetUpdateStmt()
2642 p->dbMain, &pUp->pUpdate, &p->zErrmsg, zUpdate in rbuGetUpdateStmt()
2644 *ppStmt = pUp->pUpdate; in rbuGetUpdateStmt()
3450 sqlite3_stmt *pUpdate = 0; in rbuStep() local
3453 rbuGetUpdateStmt(p, pIter, zMask, &pUpdate); in rbuStep()
3454 if( pUpdate ){ in rbuStep()
3460 p->rc = sqlite3_bind_value(pUpdate, i+1, pVal); in rbuStep()
3469 p->rc = sqlite3_bind_value(pUpdate, pIter->nCol+1, pVal); in rbuStep()
3472 sqlite3_step(pUpdate); in rbuStep()
3473 p->rc = resetAndCollectError(pUpdate, &p->zErrmsg); in rbuStep()