G
Guest
When you have to read a big file (5-30MB) and throw the data into the
database, ofcourse some logics inbetween (doesn't matter) which of the ADO
methods is recommended.
1. read line by line and do the execute for each line
2. Consolidate the files into a dataset for example and use the dataset
update method
ie
for each line
.addnew in the dataset
end
dataset.Update( .Added)
I mean which one should we prefer in these situations, will it make any
difference in performance. Are there any limitations on how many rows can be
inserted using the dataset.Update method ?
Thanks much
Chris
database, ofcourse some logics inbetween (doesn't matter) which of the ADO
methods is recommended.
1. read line by line and do the execute for each line
2. Consolidate the files into a dataset for example and use the dataset
update method
ie
for each line
.addnew in the dataset
end
dataset.Update( .Added)
I mean which one should we prefer in these situations, will it make any
difference in performance. Are there any limitations on how many rows can be
inserted using the dataset.Update method ?
Thanks much
Chris