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.
 
Back
Top