Skip to content

SQLite3 to MySQL Dump

From MySQL to SQLite3

Here is a little trick to make a migration of data between a SQLite3 database to a MySQL

The first will make the dump of the database SQLite:

$ cd db /
$ Sqlite3 development.sqlite3
SQLite version 3.3.5
Enter. “Help” for Instructions
sqlite>. dump.sql output
sqlite>. dump
sqlite> exit;
sqlite>. exit

What we generate a file dump.sql



Share on Facebook

Post a Comment

Your email is never published nor shared. Required fields are marked *
*
*