I have to port the data stored in a SQL Server database into an Excel sheet. Can anyone please provide me a suitable link for doing this? I am using ASP.net C#.
feedback
|
|
Depends what your requirements are and what's available. You can export the data as csv which Excel can open and read or you can use the Microsoft Excel Object Library. Sample for the latter can be found on MSDN and lots of other places | |||
|
feedback
|
|
You can divide your problem into two parts: They you need to know how to read data from MSSQL using C# You can search around MSDN, or stackoverflow for additional information Basically, you need to choose to use a Database Adapter (ODBC, ADO.NET etc...)
hope this is helpful enough. | |||
|
feedback
|
|
Depends a bit on the complexity of the Excel file you want to generate and how much control you need over formatting etc. In ASP.NET I think it is still not recommended to use Office Interop due to potential deadlock (UI locking issues). We generally use Aspose.Cells, a commercial product which we have been quite happy with, but it is not free. If the file is simple (Single Sheet, just data dump) writing out a CSV is usually sufficient. | |||
|
feedback
|