Need to find a Table like data structure to buffer data and insert with 1 command
Basically, i am getting many records and try to buffer them and retain the overhead of having an SQL insert command for every record.
An SQL Server specialist told me there is 1 in C#. I have a server written java, so i would like to find if there's an equivalent 1 in java.
Thx.
Re: Need to find a Table like data structure to buffer data and insert with 1 command
Your problem isn't clear - why can't you simply use a List to hold your records?