Lines Matching full:rowid
1903 ** CAPI3REF: Last Insert Rowid
1906 ** ^Each entry in most SQLite tables (except for [WITHOUT ROWID] tables)
1908 ** integer key called the [ROWID | "rowid"]. ^The rowid is always available
1909 ** as an undeclared column named ROWID, OID, or _ROWID_ as long as those
1912 ** is another alias for the rowid.
1914 ** ^The sqlite3_last_insert_rowid(D) interface returns the [rowid] of the
1915 ** most recent successful [INSERT] into a rowid table or [virtual table]
1917 ** ^Inserts into [WITHOUT ROWID] tables are not recorded.
1918 ** ^If no successful [INSERT]s into rowid tables
1923 ** method, then this routine will return the [rowid] of the inserted
1947 ** function is running and thus changes the last insert [rowid],
1950 ** last insert [rowid].
2508 ** select random [ROWID | ROWIDs] when inserting new records into a table that
2509 ** already uses the largest possible [ROWID]. The PRNG is also used for
5139 ** a rowid table.
5144 ** row is updated, inserted or deleted in a rowid table.
5152 ** ^The final callback parameter is the [rowid] of the row.
5153 ** ^In the case of an update, this is the [rowid] after the update takes place.
5157 ** ^The update hook is not invoked when [WITHOUT ROWID] tables are modified.
5365 ** ^If the specified column is "rowid", "oid" or "_rowid_" and the table
5366 ** is not a [WITHOUT ROWID] table and an
5370 ** for the [rowid] are set as follows:
5863 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
5886 ** <li> ^(Table zTable is a WITHOUT ROWID table)^,
5942 ** by the rowid value passed as the second argument. Only the row can be
7901 sqlite3_int64 iRowid; /* Rowid for current entry */
8039 ** Returns the rowid of the current row.
8048 ** ... FROM ftstable WHERE ftstable MATCH $p ORDER BY rowid