Lines Matching refs:iRow
8243 ** in row iRow, column zColumn, table zTable in database zDb;
8247 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
8272 ** <li> ^(Row iRow is not present in the table)^,
8273 ** <li> ^(The specified column of row iRow contains a value that is not
8325 sqlite3_int64 iRow,
72141 ** rowid iRow is being replaced or deleted. In this case invalidate
72147 i64 iRow, /* The rowid that might be changing */
72157 if( p->pgnoRoot==pgnoRoot && (isClearTable || p->info.nKey==iRow) ){
103616 ** the b-tree cursor associated with blob handle p to point to row iRow.
103631 static int blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr){
103636 /* Set the value of register r[1] in the SQL statement to integer iRow.
103639 sqlite3VdbeMemSetInt64(&v->aMem[1], iRow);
103681 zErr = sqlite3MPrintf(p->db, "no such rowid: %lld", iRow);
103703 sqlite_int64 iRow, /* The row containing the glob */
103913 rc = blobSeekToRow(pBlob, iRow, &zErr);
104065 SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){
104082 rc = blobSeekToRow(p, iRow, &zErr);
172567 i64 iRow; /* Current row */
172605 p->iRow++;
172613 sqlite3_result_int64(pCtx, p->iRow+1);
172617 i64 iRow = p->iRow;
172621 if( iRow<iSmall ){
172622 sqlite3_result_int64(pCtx, 1 + iRow/(nSize+1));
172624 sqlite3_result_int64(pCtx, 1 + nLarge + (iRow-iSmall)/nSize);
252679 i64 iRow; /* Rowid for this leaf */
252690 iRow = FTS5_SEGMENT_ROWID(pSeg->iSegid, iIdxLeaf);
252691 pLeaf = fts5LeafRead(p, iRow);