How to find SQLITE database file version

后端 未结 9 1546
爱一瞬间的悲伤
爱一瞬间的悲伤 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:22

    You can write this command in any sqlite explorer which will give the sqlite version

    select sqlite_version();
    

提交回复
热议问题