Lines Matching refs:iRow
8026 ** in row iRow, column zColumn, table zTable in database zDb;
8030 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
8055 ** <li> ^(Row iRow is not present in the table)^,
8056 ** <li> ^(The specified column of row iRow contains a value that is not
8108 sqlite3_int64 iRow,
71131 ** rowid iRow is being replaced or deleted. In this case invalidate
71137 i64 iRow, /* The rowid that might be changing */
71147 if( p->pgnoRoot==pgnoRoot && (isClearTable || p->info.nKey==iRow) ){
102322 ** the b-tree cursor associated with blob handle p to point to row iRow.
102337 static int blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr){
102342 /* Set the value of register r[1] in the SQL statement to integer iRow.
102345 sqlite3VdbeMemSetInt64(&v->aMem[1], iRow);
102387 zErr = sqlite3MPrintf(p->db, "no such rowid: %lld", iRow);
102409 sqlite_int64 iRow, /* The row containing the glob */
102615 rc = blobSeekToRow(pBlob, iRow, &zErr);
102767 SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){
102784 rc = blobSeekToRow(p, iRow, &zErr);
169760 i64 iRow; /* Current row */
169798 p->iRow++;
169806 sqlite3_result_int64(pCtx, p->iRow+1);
169810 i64 iRow = p->iRow;
169814 if( iRow<iSmall ){
169815 sqlite3_result_int64(pCtx, 1 + iRow/(nSize+1));
169817 sqlite3_result_int64(pCtx, 1 + nLarge + (iRow-iSmall)/nSize);
248544 i64 iRow; /* Rowid for this leaf */
248555 iRow = FTS5_SEGMENT_ROWID(pSeg->iSegid, iIdxLeaf);
248556 pLeaf = fts5LeafRead(p, iRow);