I have few sqlite database files. I want to know the database file version i.e if the database was created with sqlite2 or sqlite3 or any other main/sub version (not the sql
I found this to be the easiest method to determine the version of sqlite. Run the Python IDLE Shell, then do the following:
>>> import sqlite3 >>> sqlite3.version '2.6.0'
In my case it was 2.6.0. Hope this helps... Mark