I have some project with SQLite database that already uses FTS3 extension. Say I want to use FTS4 instead. What has to be done for that? Is there need to create new tables, repopulate or anything else? Or just change word 'fts3' to 'fts4' is enough?
Asked
Active
Viewed 54 times
0
-
The only place where the word `fts3` appears is the CREATE TABLE statement. Do you create a new table every time your program runs? – CL. Oct 23 '16 at 14:03
-
no, I do not create – BorisV Oct 23 '16 at 14:05