In MySql connector, how we can insert multiple rows ? Because the insert statement allows one row at a time ?
Hi,
It is possible to add several rows using the INSERT Statement in MySQL.
Example: INSERT INTO myTable (a, b, c) VALUES (1, 2, 3), (1, 4, 8) , …;
Regards