CoDe
CoDe

Reputation: 11146

Read data from FTS table?

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

Answers (1)

CL.
CL.

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

Related Questions