Detect the FTS3 extension in SQLite3
Posted
by pts
on Stack Overflow
See other posts from Stack Overflow
or by pts
Published on 2010-03-20T11:46:41Z
Indexed on
2010/03/20
11:51 UTC
Read the original article
Hit count: 513
What is the SQLite query to detect if the FTS3 extension module is installed? Or is it possible to get a list of installed extensions with an SQLite3 query? It has to work with pysqlite2.
I know that I can get the list of tables using SELECT * FROM sqlite_master
, I'd like to get something similar for the list of extensions. I also know that CREATE VIRTUAL TABLE v USING FTS3 (t TEXT)
succeeds iff FTS3 is installed, but I'd like to get a query without side effects (not even creating a temporary table).
© Stack Overflow or respective owner