I want to use sqlite3 with Python 3.1.3, and I need to set enable_load_extension to true. For this, I believe that I need sqlite version 3.x. From the read posts, it seems here that a suitable version of sqlite should be bundled with python version 2.6 and higher. However, when I do this:
import sqlite3
sqlite3.version_info
Returned result: '2.4.1'
I get the same answer on another machine running Python 2.6.
The pysqlite site does not have binaries for Python 3.x. My copy of Python appeared on the official Python website.
So: 1) What version of sqlite should I have with 3.1? 2) If I have to have a more modern version, where did she go, do I need to set an environment variable? 2) If I need u
source
share