Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to setup FTS3/FTS4 with python2.7 on Windows

FTS3/FTS4 doesn't work in python by default (up to 2.7). I get the error:

sqlite3.OperationalError: no such module: fts3
or
sqlite3.OperationalError: no such module: fts4

How can this be resolved?

like image 336
Naveen Avatar asked Sep 29 '10 16:09

Naveen


1 Answers

  1. Download the latest sql dll.

  2. Replace sqlite.dll in your python/dll folder.

like image 115
MrValdez Avatar answered Oct 11 '22 03:10

MrValdez