Home | History | Annotate | Download | only in orig

Lines Matching refs:iRow

5769 ** in row iRow, column zColumn, table zTable in database zDb;
5773 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
5826 sqlite3_int64 iRow,
49827 ** rowid iRow is being replaced or deleted. In this case invalidate
49832 i64 iRow, /* The rowid that might be changing */
49839 if( p->isIncrblobHandle && (isClearTable || p->info.nKey==iRow) ){
71211 ** the b-tree cursor associated with blob handle p to point to row iRow.
71226 static int blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr){
71231 /* Set the value of the SQL statements only variable to integer iRow.
71236 v->aVar[0].u.i = iRow;
71264 zErr = sqlite3MPrintf(p->db, "no such rowid: %lld", iRow);
71286 sqlite_int64 iRow, /* The row containing the glob */
71487 sqlite3_bind_int64(pBlob->pStmt, 1, iRow);
71488 rc = blobSeekToRow(pBlob, iRow, &zErr);
71612 SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){
71628 rc = blobSeekToRow(p, iRow, &zErr);