i have an export sql file containing tables and data from mysql and i want to import it into a sqlite 3 db.
please can you tell me the best way?
i get error reading file in via sqlite3 binary.
|
feedback
|
|
This shell script help you
| |||||||||||||
feedback
|
|
To get the above script to work, I made the following changes:
Then it worked nicely... thanks for the script. | ||||
|
feedback
|
|
This script throws the following errors for me on OSX. Substitution loop at -e line 1, <> chunk 1. | |||
|
feedback
|
|
works fine on Centos 5.3 64bit. once you have the output file load it like so: shell> sqlite3 file_name.db SQLite version 3.3.6 Enter ".help" for instructions sqlite> .databases seq name file 0 main /current_directory/file_name.db | |||
|
feedback
|
|
When the sqlite3 database is going to be used with ruby you may want to change:
to:
alas, this only half works because even though you are inserting 1's and 0's into a field marked boolean, sqlite3 stores them as 1's and 0's so you have to go through and do something like:
but it was helpful to have the sql file to look at to find all the booleans. | |||
|
feedback
|
|
I had an issue with the mysql db being ISO-8859-1 (Latin-1). When did the conversion to sqlite3 assumed the data was UTF-8 resulting in decoding errors. It was easy to fix with this: iconv -f ISO-8859-1 -t UTF-8 mysql_dump_file > mysql_dump_file_utf8 Incase this helps someone. | ||||
|
feedback
|
|
At least, with mysql 5.0.x, I had to remove collate utf8_unicode_ci from mysql's dump before importing it to sqlite3. So I modified the script to include the following to the list of seds:
Update: MySQL treats boolean fields as "tinyint(1)", so I had to add the following before
Also, since I'm trying to replicate a mysql db (production) to a sqlite3 db (development) of a Ruby On Rails application, I had to add the following line in order to set an auto-incrementing primary key:
I'm still trying to figure out a way to change the KEY entries from mysql to its corresponding CREATE INDEX entry of sqlite3. | ||||
|
feedback
|
|
I tried some of these scripts that uses sed or awk, but always occurs an error, probably due to the indexes and foreign keys of my MySQL db and the mysqldump options needed. Then I found the Perl module SQL::Translator "that converts vendor-specific SQL table definitions into other formats..." So, I rewrite the shell script, including the dump of the MySQL db. There are two dumps because the script "sqlt" only generates the structure and works fast if the dump has no data. Note that it can be adapted to others conversions suported by the SQL::Translator. After I posted this shell script I realized that the question is about to convert a MySQL dumpfile, so I did a Perl script that do that, using the module SQL::Translator. In my tests, I used a dumpfile generated without options (mysqldump -u user --password database > dumpfile). I had no problems with character sets. In other test I had problem with mysql triggers, so I altered the scripts to skip it.
Here the Perl script to convert a dumpfile in a SQLite database file.
| ||||
|
feedback
|