what is the fasted way to read a csv file

  • Thread starter Thread starter DaveF
  • Start date Start date
It depends on what you are going to do with the data.

If you need to put it into a SQL Server table, I'd use DTS to import
and fastload the data without the overhead of a transaction.

If you need to keep the data around in memory, use StreamReader and
String.Split to bring the data in and crack apart the fields.

There are a plethora of options, not sure which one is the best fit
for your application, though.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top