Re: sqlite3.OperationalError: no such table: sqlite_schema

Posted by Jiba on
URL: http://owlready.306.s1.nabble.com/sqlite3-OperationalError-no-such-table-sqlite-schema-tp2473p2476.html

Can you ask for the version of sqlite3 in Python ? It might be precompiled with Python itself.

You can do it as follows:

python
>>> import sqlite3
>>> sqlite3.sqlite_version
'3.35.5'

Jiba