Home | History | Annotate | Download | only in dist

Lines Matching refs:iRow

8409 ** in row iRow, column zColumn, table zTable in database zDb;
8413 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
8438 ** <li> ^(Row iRow is not present in the table)^,
8439 ** <li> ^(The specified column of row iRow contains a value that is not
8491 sqlite3_int64 iRow,
73707 ** rowid iRow is being replaced or deleted. In this case invalidate
73713 i64 iRow, /* The rowid that might be changing */
73723 if( p->pgnoRoot==pgnoRoot && (isClearTable || p->info.nKey==iRow) ){
105870 ** the b-tree cursor associated with blob handle p to point to row iRow.
105885 static int blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr){
105890 /* Set the value of register r[1] in the SQL statement to integer iRow.
105893 sqlite3VdbeMemSetInt64(&v->aMem[1], iRow);
105935 zErr = sqlite3MPrintf(p->db, "no such rowid: %lld", iRow);
105957 sqlite_int64 iRow, /* The row containing the glob */
106167 rc = blobSeekToRow(pBlob, iRow, &zErr);
106334 SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){
106351 rc = blobSeekToRow(p, iRow, &zErr);
176886 i64 iRow; /* Current row */
176924 p->iRow++;
176932 sqlite3_result_int64(pCtx, p->iRow+1);
176936 i64 iRow = p->iRow;
176940 if( iRow<iSmall ){
176941 sqlite3_result_int64(pCtx, 1 + iRow/(nSize+1));
176943 sqlite3_result_int64(pCtx, 1 + nLarge + (iRow-iSmall)/nSize);
258562 i64 iRow; /* Rowid for this leaf */
258573 iRow = FTS5_SEGMENT_ROWID(pSeg->iSegid, iIdxLeaf);
258574 pLeaf = fts5LeafRead(p, iRow);
258592 FTS5_CORRUPT_ROWID(p, iRow);
258604 FTS5_CORRUPT_ROWID(p, iRow);
258609 if( res<0 ) FTS5_CORRUPT_ROWID(p, iRow);
258612 fts5IntegrityCheckPgidx(p, iRow, pLeaf);