Lines Matching defs:iRow
7799 ** in row iRow, column zColumn, table zTable in database zDb;
7803 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
7828 ** <li> ^(Row iRow is not present in the table)^,
7829 ** <li> ^(The specified column of row iRow contains a value that is not
7881 sqlite3_int64 iRow,
69158 ** rowid iRow is being replaced or deleted. In this case invalidate
69164 i64 iRow, /* The rowid that might be changing */
69174 if( p->pgnoRoot==pgnoRoot && (isClearTable || p->info.nKey==iRow) ){
99296 ** the b-tree cursor associated with blob handle p to point to row iRow.
99311 static int blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr){
99316 /* Set the value of register r[1] in the SQL statement to integer iRow.
99320 v->aMem[1].u.i = iRow;
99362 zErr = sqlite3MPrintf(p->db, "no such rowid: %lld", iRow);
99384 sqlite_int64 iRow, /* The row containing the glob */
99590 rc = blobSeekToRow(pBlob, iRow, &zErr);
99742 SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){
99759 rc = blobSeekToRow(p, iRow, &zErr);
163539 i64 iRow; /* Current row */
163577 p->iRow++;
163585 sqlite3_result_int64(pCtx, p->iRow+1);
163589 i64 iRow = p->iRow;
163593 if( iRow<iSmall ){
163594 sqlite3_result_int64(pCtx, 1 + iRow/(nSize+1));
163596 sqlite3_result_int64(pCtx, 1 + nLarge + (iRow-iSmall)/nSize);
236106 i64 iRow; /* Rowid for this leaf */
236117 iRow = FTS5_SEGMENT_ROWID(pSeg->iSegid, iIdxLeaf);
236118 pLeaf = fts5LeafRead(p, iRow);