How to find SQLITE database file version

后端 未结 9 1542
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-02 11:46

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

9条回答
  •  鱼传尺愫
    2020-12-02 12:18

    You have to open the python shell then write these steps:

    import sqlite3
    
    sqlite3.sqlite_version
    

提交回复
热议问题