The Virtual Table Mechanism Of SQLite
(vtab.html)
2.3. The xBestIndex Method
... define SQLITE_INDEX_SCAN_UNIQUE 1 /* Scan visits at most 1 row */
Use the sqlite3_vtab_collation() interface to find the name of
the collating sequence that should be used when evaluating the i-th
constraint:
const char *sqlite3_vtab_collation(sqlite3_index_info*, int i);
The SQLite core ...
|
SQLite FTS5 Extension
(fts5.html)
7.2.1. Custom Auxiliary Functions API Overview
... The difference is that instead of iterating through the
matches for a single, specified phrase, the xInstCount/xInst APIs collate
all matches into a single flat array, sorted in order of occurrence within
the current row. Elements of this array ...
|
Page generated by FTS5 in about 62.92 ms.