Please help me with exporting a MySQL database into a SQLite database.
export the data with
mysqldump database > database.sql
and import the data with
sqlite3 database < database.sql
you may need -u (user) and -p (password) options