SQLite FTS5 Extension
(fts5.html)
9.2.1. The %_data Table Rowid Space
... Each segment b-tree in the system is assigned a unique 16-bit segment id.
Segment ids may only be reused after the original owner segment b-tree is
completely merged into a higher level segment b-tree. Within a ...
|
SELECT
(lang_select.html)
... There is a row in the cartesian product dataset
formed by combining each unique combination of a row from the left-hand
and right-hand datasets. In other words, if the left-hand dataset consists of
Nleft rows of
Mleft ...
|
SQLite Changes From Version 3.4.2 To 3.5.0
(34to35.html)
... Windows) SQLite assumes that temporary file names are unique
without actually testing for collisions, so it is important to have
good-quality randomness even if the random() and randomblob()
functions are never used.
The xSleep method is used to suspend ...
|
The Tcl interface to the SQLite library
(tclsqlite.html)
3.15. The onecolumn method
... Because method names can shortened to any unique prefix, this method
is usually written as "one" instead of its full name "onecolumn".
|
The sqlite3_analyzer.exe Utility Program
(sqlanalyze.html)
1.2. Example Output
... Number of implied indices
The number of indices used to implement PRIMARY KEY or UNIQUE constraints
on tables.
Size of the file in bytes
The total amount of disk space used by the entire database files.
Bytes of user payload ...
|
The Virtual Database Engine of SQLite
(vdbe.html)
... SELECT two FROM examp
EXCEPT
SELECT four FROM examp2;
The result of this last example should be every unique value
of the "two" column in the examp table, except any value that is
in the "four" column of examp2 is ...
|
SQLite FTS3 and FTS4 Extensions
(fts3.html)
1.3. Populating FTS Tables
... INSERT INTO pages(rowid, docid, title, body) VALUES(1, 2, 'A title', 'A document body');
To support full-text queries, FTS maintains an inverted index that maps
from each unique term or word that appears in the dataset to the ...
|
Page generated by FTS5 in about 106.50 ms.