views:

9

answers:

1

I built sqlite with fts3 enabled from source using mingw, and it works from the sqlite3 command line program.
However fts3 doesn't work in python. Replacing the sqlite3.dll in python27\dlls with the newly built dll from sqlite doesn't work. I still get the error:

sqlite3.OperationalError: no such module: fts3

A: 

never mind.
installing pysqlite from source was easy and sufficient.

python setup.py build_static install 
fts3 is enabled by default when installing from source.

Naveen