i got some struggle with inserting multiple rows in my SQLite3 DB. I'm trying to insert round about 1000 rows with one SQL INSERT statement using this syntax:
INSERT INTO 'tablename' ('column1', 'column2') VALUES
('data1', 'data2'),
('data1', 'data2'),
('data1', 'data2'),
('data1', 'data2');
I've read something like there is a limit of 500 rows per multiple insert action in this thread: Is it possible to insert multiple rows at a time in an SQLite database?
But i don't know if i got it right.
So...is it right, that this syntax im using is limited to 500 "values" per SQL statement??
What can i do if want to insert more? Do i have to split the data and do more queries?
Thanks :)