Lines Matching refs:iRow
5769 ** in row iRow, column zColumn, table zTable in database zDb;
5773 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
5826 sqlite3_int64 iRow,
49855 ** rowid iRow is being replaced or deleted. In this case invalidate
49860 i64 iRow, /* The rowid that might be changing */
49867 if( p->isIncrblobHandle && (isClearTable || p->info.nKey==iRow) ){
71239 ** the b-tree cursor associated with blob handle p to point to row iRow.
71254 static int blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr){
71259 /* Set the value of the SQL statements only variable to integer iRow.
71264 v->aVar[0].u.i = iRow;
71292 zErr = sqlite3MPrintf(p->db, "no such rowid: %lld", iRow);
71314 sqlite_int64 iRow, /* The row containing the glob */
71515 sqlite3_bind_int64(pBlob->pStmt, 1, iRow);
71516 rc = blobSeekToRow(pBlob, iRow, &zErr);
71640 SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){
71656 rc = blobSeekToRow(p, iRow, &zErr);