I have an export SQL file containing tables and data from MySQL and I want to import it into a Sqlite 3 DB.
What is the best way to do that?
Just importing t
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 sqlite> select * from table; . . . . . results... sqlite>.quit