Lines Matching refs:pWriteRowid
218296 sqlite3_stmt *pWriteRowid; member
219148 sqlite3_finalize(pRtree->pWriteRowid);
220461 sqlite3_bind_int64(pRtree->pWriteRowid, 1, iRowid);
220462 sqlite3_bind_int64(pRtree->pWriteRowid, 2, iNode);
220463 sqlite3_step(pRtree->pWriteRowid);
220464 return sqlite3_reset(pRtree->pWriteRowid);
221020 sqlite3_bind_null(pRtree->pWriteRowid, 1);
221021 sqlite3_bind_null(pRtree->pWriteRowid, 2);
221022 sqlite3_step(pRtree->pWriteRowid);
221023 rc = sqlite3_reset(pRtree->pWriteRowid);
221556 appStmt[3] = &pRtree->pWriteRowid;