Reputation: 11146
In one of implementing feature set application have to perform frequent Search Query directly from sqlite data Base. I found FTS could be better way to perform faster search. I created it but it's returning no data. I checked by opening db file, Virtual Table Created but no data there.
My question is, does Virtual Table required to insert data manually before to fetch any data. Any suggestion !!
Upvotes: 0
Views: 145
Reputation: 180070
The documentation says:
FTS tables are populated using INSERT, UPDATE and DELETE statements in the same way as ordinary SQLite tables are.
Upvotes: 1