Is it possible to convert from MySQL to SQLite with a free tool on windows?
+3
A:
Not every DB schema can be converted. MySQL is more complex and feature-rich than SQLite. However, if your schema is simple enough, you could dump it into an SQL file and try to import it / load it into an SQLite DB.
Assaf Lavie
2010-10-08 12:42:11
+2
A:
If you have experience write simple scripts by Perl\Python\etc, and convert MySQL to SQLite. Read data from Mysql and write it on SQLite.
Evgeniy
2010-10-08 12:42:46
A:
have you tried to simply export your mysql-database and import it to sqlite? i don't know sqlite, but maybe this works that easy / maybe you have to do some little adaptations, but both is sql and should be almost compatible.
oezi
2010-10-08 12:44:23
A:
I don't know of a free tool, but SQLite Migrator (a product I sell) will do this for you.
Paul Lefebvre
2010-10-17 02:31:09