I have a txt file with sql INSERT INTO queries and values. I’d like to run them all at once in Dart/Flutter with the sqlite plugin. Is this possible?
INSERT INTO article (id, name) VALUES (1, 'Banana') ; INSERT INTO article (id, name) VALUES (2, 'Orange') ; INSERT INTO article (id, name) VALUES (3, 'Apple') ;
All methods I’m trying don’t work