Contents ======== * Source * Notes Source ====== I compiled sqlite 3.46.1 with DJGPP. The modifications can be found in the src/ directory. The original source and offline documentation can be found at: Notes ===== FTS (Full Text Search) ---------------------- I found the following article helpful for using the FTS5 feature. List all FTS5 terms ------------------- CREATE VIRTUAL TABLE content_vocab USING fts5vocab('recipes_fts', 'col'); .mode csv .output test.csv SELECT term FROM content_vocab; .output stdout .q UPDATE FROM (join) ------------------ UPDATE recipes_fts SET title = z.title FROM (SELECT id, title FROM recipes) AS z where z.id = recipes_fts.id;