mysql2sqlite
mysql2sqlite copied to clipboard
Online MySQL to SQLite converter 🔨 https://ww9.github.io/mysql2sqlite/
I've used your excellent converter but I've hit a snag. My SQL dumps separate the keys assignments into separate ALTER TABLE queries. Is there any way I can a) force...
MySQL dump file has LOCK and UNLOCK TABLES in between inserting values to table. Result from converter does not remove this and when executing the file it causes error.
row with a timestamp from MySQL dump file, : " `dateCreated` timestamp NULL DEFAULT current_timestamp()," These cause syntax errors when trying to read the sqlite result. I believe correct way...
If a field name includes the word 'Number', it gets converted to the wrong field name. ``` -- MySQL DROP TABLE IF EXISTS `employees`; CREATE TABLE `employees` ( `employeeNumber` int(11)...
CURRENT_TIMESTAMP() is not converted: ` `date_created` timestamp NOT NULL DEFAULT current_timestamp(),` Found this in Stackoverflow: `(datetime('now','localtime'))` https://stackoverflow.com/questions/381371/sqlite-current-timestamp-is-in-gmt-not-the-timezone-of-the-machine
A problem with AUTO INCREMENT: This ``` CREATE TABLE IF NOT EXISTS `table_name` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, ... PRIMARY KEY (`id`) ); ``` Should become ``` CREATE...
Your tool is very good, but I think to make it even more complete, it could have the option to save the file directly. I have some little troubles in...
adds support for hex blobs