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
Get user_version: run sql: PRAGMA user_version;
PRAGMA user_version;
Get schema_version: PRAGMA schema_version;
PRAGMA schema_version;
When create database file (.db), user_version can be set by user.