converting mysql dump file to sqlite

Hi, i have a mysql dump file that i need to convert to sqlite data. what do i need to do??

If by dump file you mean a text file of SQL statements, and if you’re lucky, you might be able to read it in directly using an sqlite front end such as SQLite Expert. Otherwise, it shouldn’t take too much effort to write a program that reads the dump file and writes it to an sqlite database.

yes… that is what i mean… i think the mysql CREATE TABLE and INSERT INTO is slightly different from SQLite.

you may be able to fix those differences when you find them. e.g. with search and replace.

thanks