aaemnnosttv / wp-sqlite-db

A single file drop-in for using a SQLite database with WordPress. Based on the original SQLite Integration plugin.
551 stars 93 forks source link

Basic method to convert to MySQL #35

Closed summersab closed 1 year ago

summersab commented 2 years ago

I discovered a method for converting the SQLite DB to MySQL. So far, it seems to work. The basic method is to use the sqlite3mysql tool and then altering the column data types to match what WP expects by default. Here is a basic gist of how it works: https://gist.github.com/summersab/ec053cdbea162bca3aa4ecb72b039aba

Let me know if you have any questions, and hopefully, someone will find this helpful.

aaemnnosttv commented 1 year ago

Thanks for sharing!