Lines Matching refs:iRow
7619 ** in row iRow, column zColumn, table zTable in database zDb;
7623 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
7648 ** <li> ^(Row iRow is not present in the table)^,
7649 ** <li> ^(The specified column of row iRow contains a value that is not
7701 sqlite3_int64 iRow,
66114 ** rowid iRow is being replaced or deleted. In this case invalidate
66120 i64 iRow, /* The rowid that might be changing */
66130 if( p->pgnoRoot==pgnoRoot && (isClearTable || p->info.nKey==iRow) ){
95214 ** the b-tree cursor associated with blob handle p to point to row iRow.
95229 static int blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr){
95234 /* Set the value of register r[1] in the SQL statement to integer iRow.
95238 v->aMem[1].u.i = iRow;
95280 zErr = sqlite3MPrintf(p->db, "no such rowid: %lld", iRow);
95302 sqlite_int64 iRow, /* The row containing the glob */
95509 rc = blobSeekToRow(pBlob, iRow, &zErr);
95659 SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){
95676 rc = blobSeekToRow(p, iRow, &zErr);
156770 i64 iRow; /* Current row */
156808 p->iRow++;
156816 sqlite3_result_int64(pCtx, p->iRow+1);
156820 i64 iRow = p->iRow;
156824 if( iRow<iSmall ){
156825 sqlite3_result_int64(pCtx, 1 + iRow/(nSize+1));
156827 sqlite3_result_int64(pCtx, 1 + nLarge + (iRow-iSmall)/nSize);
229019 i64 iRow; /* Rowid for this leaf */
229030 iRow = FTS5_SEGMENT_ROWID(pSeg->iSegid, iIdxLeaf);
229031 pLeaf = fts5LeafRead(p, iRow);