Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to convert from MySQL to SQLite with a free tool on windows?

share|improve this question

10 Answers

Here are a list of converters:

share|improve this answer

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.

share|improve this answer

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:

./mysql2sqlite.sh myDbase | sqlite3 database.sqlite

A simpler script was posted at the the MySQL Forums

share|improve this answer
1  
Works as charm! Here is a bit of documentation: $ ./mysql2sqlite.sh -h host -u MyUserName -pMySecretPassWord myDbase | sqlite3 database.sqlite gist.github.com/943776 – kachar Oct 30 '12 at 12:58

Sequel (Ruby ORM) has a command line tool for dealing with databases, you must have ruby installed, then:

  $ gem install sequel
  $ sequel mysql://user:password@host/database -C sqlite://db.sqlite
share|improve this answer

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.

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer

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/

share|improve this answer

The jembe team make a service to make the transformation: They use a modified version of the mysql2sqlite script

share|improve this answer

This is a simple converter: http://mysql2sqlite.felipemarques.com.br/ (the site is in brazilian Portuguese)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.