4

Possible Duplicate:
Reading Excel Files as a Server Process

While the Jet OleDB Driver is pretty simple to use for reading an Excel sheet, it simply cant handle excel files having rows more than a thousand.

Is there any other way of reading more than 5-10k rows from an excel sheet in C#?

Community
  • 1
  • 1
Sudheer
  • 329
  • 1
  • 7
  • 21

1 Answers1

0

If it is an ooxml file you can use open xml sdk. It is not as straightforward as the oledb driver, but it is possible.

If you can transform the excel-sheet to a csv-file, you can use Filehelpers. This can handle 100K+ records.

Jelle
  • 322
  • 3
  • 14