How to convert mysql to SQLite using PHP

I have a database on mysql server. I want to convert this to sqlite3 database without using shell scripts or perl. I want some help to be converted using PHP. Any help would be appreciated.

0
source share
1 answer

Depending on the database, you should easily dump mysql (in the form of SQL it creates and inserts), and then run it in sqlite. You will probably have to change the table creation instructions, although due to the different types of columns used by each engine.

0
source

Source: https://habr.com/ru/post/1435451/


All Articles