I have written an application in delphi which performs a mass insert (1000+ lines). However, I am inserting each line into the table one-by-one, e.g.
INSERT INTO invoice_data VALUES (...)
Is there any way I can insert all 1000 in one go? Is this a better way to perform a mass insert?
Thanks.
------------------------------------
There's no place like 127.0.0.1
------------------------------------
INSERT INTO invoice_data VALUES (...)
Is there any way I can insert all 1000 in one go? Is this a better way to perform a mass insert?
Thanks.
------------------------------------
There's no place like 127.0.0.1
------------------------------------