mavera
mavera

Reputation: 3241

The most efficient way to export large amount of data to excel

If you had to get large amount data(nearly 230.000 rows) from database(I use oracle) to an excel file with asp.net, how would you do it? I need some advice about this issue.

Upvotes: 0

Views: 5837

Answers (2)

honibis
honibis

Reputation: 811

You should consider using csv(Comma Separated Value) file format. It is very lightweight and supported by excel:

http://creativyst.com/Doc/Articles/CSV/CSV01.htm

Upvotes: 3

Chris Taylor
Chris Taylor

Reputation: 53699

I would suggest that you take a look at NPOI library.

Upvotes: 2

Related Questions