Small. Fast. Reliable.
Choose any three.
Search:
Look in:

Wiki Page CodeWarrior
... sqlite_close sqlite_exec sqlite_last_insert_rowid sqlite_changes sqlite_error_string ...

Wiki Page ColumnNames
... ); And you do the following query: SELECT rowid, xyz FROM example1; The names of your resul ...

Wiki Page ConsoleForTclTk
... ws: UPDATE table1 SET dscr = edit(dscr) WHERE rowid=15; The following short script illustrates ...

Wiki Page DatabaseIsLocked
... {link: tclsqlite.html Tcl}): db eval {SELECT rowid FROM ex1} { if {$rowid==10} { db ...

Wiki Page FtsOne
... a column in a full-text table: sqlite> select rowid, name, ingredients from recipe where name ma ...

Wiki Page FtsTwoNotes
... in a single =%_segments= table which is keyed by rowid. When we do a merge, the newly created bloc ...

Wiki Page FtsUsage
... XT=. The table has the implicit unique index on =rowid=, plus the full-text index (see next section ...

Wiki Page FullTextIndex
... a column in a full-text table: sqlite> select rowid, name, ingredients from recipe where name ma ...

Wiki Page HowToCompile
... lite_exec = _sqlite_exec sqlite_last_insert_rowid = _sqlite_last_insert_rowid sqlite_erro ...

Wiki Page HowToCompileWithVsNet
... sqlite_close sqlite_exec sqlite_last_insert_rowid sqlite_error_string sqlite_interrupt ...

Wiki Page IdxChk
... e) book <pk> <integer primary key or rowid> author <pk> <integer primary key ...

Wiki Page InteractiveTextFieldEditing
... UPDATE table SET field='new value' WHERE rowid=...; This requires that the entire revised ...

Wiki Page PerformanceTuning
... s way:</p> <pre> SELECT * FROM table1 WHERE rowid IN (SELECT rowid FROM table1 WHERE ...

Wiki Page SqliteVersusFirebird
... entirely in the index (all SQLite tables have a "rowid" index). That may account for the magnitude ...

Wiki Page UndoRedo
... T INTO undolog VALUES(NULL,'DELETE FROM ex1 WHERE rowid='||new.rowid); END; CREATE TEMP TRIGGER ...

Wiki Page UnsupportedSql
... hing like this instead for LIMIT 1: SELECT ROWID FROM table WHERE id_r = 'id_of_row' LIMIT 1; ...

Wiki Page VirtualTableBestIndexMethod
... rst column of the virtual table is column 0. The rowid of the virtual table is column -1. The aCons ...

Wiki Page VirtualTableMethods
... te_int64 *pRowid); This method writes the 64-bit rowid of the current row into *pRowid. ---- *xUp ...

Wiki Page VirtualTables
... _vtab_cursor*, sqlite3_context*, int); int (*xRowid)(sqlite3_vtab_cursor*, sqlite_int64 *pRowid) ...