Please help me with exporting a MySQL database into a SQLite database.
I manualy created the table structure in sqlite database.
Than I uploaded the data with teh following command:
mysqldump -u root {database} {table} --no-create-info --skip-extended-insert --complete-insert --skip-add-locks --compatible=ansi | sed "s/\\\'/''/g" |sqlite3 flora.db
I had to use sed to fix a different apex encoding in the two databases