tags:

views:

50

answers:

4

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
+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
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
A: 

I don't know of a free tool, but SQLite Migrator (a product I sell) will do this for you.

http://www.logicalvue.com/products/sqlitemigrator/

Paul Lefebvre