E
elziko
I'm using OLEDB in .NET to get my data into a database. The data starts off
in an 2-D array of singles where the first dimension represents columns in a
database table and the second dimension represents rows in the same table.
At the moment I have a single connection & transaction and I am loading the
data into the database by iterating through the array and creating an INSERT
OLEDBCommand for each row in the array and then executing the command.
This works but is very slow. Is there a quicker way to get an array such as
mine into the database?
in an 2-D array of singles where the first dimension represents columns in a
database table and the second dimension represents rows in the same table.
At the moment I have a single connection & transaction and I am loading the
data into the database by iterating through the array and creating an INSERT
OLEDBCommand for each row in the array and then executing the command.
This works but is very slow. Is there a quicker way to get an array such as
mine into the database?