在项目中需要将mysql迁移到sqlite3中,此时需要作数据转换
准备工作
下载mysql2sqlite转换工具
https://github.com/dumblob/mysql2sqlite/archive/refs/heads/master.zip
下载sqlite3
https://www.sqlite.org/download.html
转换
命令行中输入如下命令
bash
1、cd "C:\Program Files\MySQL\MySQL Server 5.7\bin"
2、mysqldump -uuser -ppassword test > test.sql
3、./mysql2sqlite test.sql | sqlite3 test.db