sqlite3-to-mysql

Transfer data from SQLite to MySQL databases

brewmacoslinux
Try with needOr install directly
Source

About

Transfer data from SQLite to MySQL

Commands

sqlite3-to-mysql

Examples

Convert an entire SQLite database to MySQL$ sqlite3-to-mysql --sqlite-file /path/to/database.db --mysql-user root --mysql-password secret --mysql-database target_db
Transfer SQLite data to remote MySQL server$ sqlite3-to-mysql --sqlite-file data.db --mysql-host 192.168.1.100 --mysql-user admin --mysql-password pass --mysql-database mydb
Dry-run mode to preview migration without applying changes$ sqlite3-to-mysql --sqlite-file app.db --mysql-user root --mysql-password pass --mysql-database converted_db --dry-run