I am trying to execute a SQL file (A dump file from MySQL database) inside a SQLite3 database.
The problem I am facing is that the dump file has a multiple insert that is not handled by SQLite3.
Here is an example:
INSERT INTO resultset_values (id, o_id, points, descrip, created, createdby, up, upby)
VALUES
(1,1,1,'string1','2011-03-29 11:21:00','user1',NULL,NULL),
(2,1,2,'string2','2011-03-29 11:21:00','user1',NULL,NULL);
This works fine in MySQL, but I can't make it work in SQLite3. Does someone have any idea of how to make multiples inserts in SQLite3? My database is pretty big, the example above is intended just to illustrate the problem.