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

Post a Comment