Using Sqlite's Fts3/4 With Python 3
I have been working on peewee's example blog application using python's Flask framework. (See https://github.com/coleifer/peewee, inside examples>blog). I have installed all the
Solution 1:
You can open a sqlite shell and run pragma compile_options
to see what your SQLite has. AFAIK this has nothing to do with Python3.
Here are mine:
sqlite> pragma compile_options;
ENABLE_COLUMN_METADATA
ENABLE_FTS3
ENABLE_RTREE
ENABLE_UNLOCK_NOTIFY
SECURE_DELETE
SYSTEM_MALLOC
THREADSAFE=1
You may need to recompile SQLite if you find you do not have the FTS extension. Also check out the docs:
Post a Comment for "Using Sqlite's Fts3/4 With Python 3"