hi again Mercea
I found this :
SQLite ----> MySql
Download sqlite3.exe on
http://www.sqlite.orgExport the SQLite database with sqlite3.exe and command parameter ".dump" (Nate, ".export" doesn't exist!), an example :
sqlite3 mySQLiteDataBase .dump .quit >> myDumpSQLite
Adapt the dump to get it compatible for MySQL
- Replace " (double-quotes) with ` (grave accent)
- Remove "BEGIN TRANSACTION;" "COMMIT;", and lines related to "sqlite_sequence"
- Replace "autoincrement" with "auto_increment"
The dump is ready to get imported in a MySQL server
MySql ----> SQLite
Export the database in an ASCII compatible format. (functionnality available in phpMyAdmin 2.6.1)
Import to SQLite with command line : sqlite3 mySQLiteDataBase < dumpMySQL
on this website....
http://sqlite.phxsoftware.com/mabby helpful
