What is a SQLite query to determine if the FTS3 add-on is installed? Or can I get a list of installed extensions with an SQLite3 query? It should work with pysqlite2.
I know that I can get a list of tables using SELECT * FROM sqlite_master , I would like to get something similar for a list of extensions. I also know that CREATE VIRTUAL TABLE v USING FTS3 (t TEXT) succeeds if FTS3 is installed, but I would like to receive the request without side effects (without even creating a temporary table).
As a workaround, I opened the ":memory:" database and issued the CREATE VIRTUAL TABLE command above.
source share