Export a MySQL Database to SQLite Database

前端 未结 7 1402
太阳男子
太阳男子 2020-11-28 08:33

Please help me with exporting a MySQL database into a SQLite database.

7条回答
  •  隐瞒了意图╮
    2020-11-28 08:55

    export the data with

      mysqldump database > database.sql
    

    and import the data with

      sqlite3 database < database.sql
    

    you may need -u (user) and -p (password) options

提交回复
热议问题