How to convert sqlite2 to sqlite3 and what are the differences between both versions?

后端 未结 3 2392
梦谈多话
梦谈多话 2021-02-19 22:38

I need to convert from sqlite2 db to sqlite3, is there any tutorial that shows how to do it? And if I migrate correctly what to expect as I start the project?

3条回答
  •  南方客
    南方客 (楼主)
    2021-02-19 23:23

    The SQLite website says:

    sqlite OLD.DB .dump | sqlite3 NEW.DB
    

    where sqlite is version 2 and sqlite3 is version 3.

提交回复
热议问题