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-tp2473p2474.html

Hi,

sqlite_schema is normally a special/reserved schema of SQLite, that should exist.

Which version of Python are you using ?
Which version of SQLite3 ? you can get it as follows in Python:

import sqlite3
print(sqlite3.sqlite_version)

Jiba