Is it possible to convert from MySQL to SQLite with a free tool on windows?
|
Here are a list of converters: |
|||
|
|
|
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. |
|||
|
|
|
There is a mysql2sqlite.sh script on GitHub: https://raw.github.com/gist/1287049/mysql2sqlite.sh As described in the header, the script can be used like this:
A simpler script was posted at the the MySQL Forums |
|||||
|
|
Sequel (Ruby ORM) has a command line tool for dealing with databases, you must have ruby installed, then:
|
|||
|
|
|
From this webpage: http://osenxpsuite.net/download.htm download SQLite2009 Pro Enterprise Manager It is free. It can import data from Mysql database. I just converted a 17M database. It is perfect. |
|||
|
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
I don't know of a free tool, but SQLite Migrator (a product I sell) will do this for you. |
|||
|
|
|
The jembe team make a service to make the transformation: They use a modified version of the mysql2sqlite script |
||||
|
|
|
This is a simple converter: http://mysql2sqlite.felipemarques.com.br/ (the site is in brazilian Portuguese) |
||||
|
|


