

(And, of course, to be able to re-construct the string from the bytes.)įor those goals, I honestly do not understand why people keep telling you that you need the encodings. Like you mentioned, your goal is, simply, to "get what bytes the string has been stored in". You can also manually create Excel files, but the above functionality is what really impressed me.Ĭontrary to the answers here, you DON'T need to worry about encoding if the bytes don't need to be interpreted! Create the Excel worksheet from the data setĮ("MyExcelFile.xls", ds) Ĭreating the Excel file is as easy as that. OleDbDataAdapter adptr = new OleDbDataAdapter() OleDbCommand cmd = new OleDbCommand(sql, con) String sql = "SELECT Whatever FROM MyDBTable " Create a query and fill the data table with the data from the DB OleDbConnection con = new OleDbConnection(dbConnectionString) Open a DB connection (in this example with OleDB)
MENUSTRIP VISUAL BASIC CODE
Note that the ExcelLibrary code is the single line at the bottom: //Create the data set and tableĭataTable dt = new DataTable("New_DataTable") ĭs.Locale = .CurrentCulture ĭt.Locale = .CurrentCulture Here is an example taking data from a database and creating a workbook from it.
MENUSTRIP VISUAL BASIC LICENSE
Here are a couple links for quick reference: ExcelLibrary - GNU Lesser GPL EPPlus - GNU (LGPL) - No longer maintained EPPlus 5 - Polyform Noncommercial - Starting May 2020 NPOI - Apache License It seems to be more actively updated and documented as well.Īlso, as noted by below, EPPlus has support for Pivot Tables and ExcelLibrary may have some support ( Pivot table issue in ExcelLibrary) In all, EPPlus seems to be the best choice as time goes on. There are a few known bugs with each library as noted in the comments. You can also use EPPlus, which works only for Excel 2007/2010 format files (.xlsx files). Plus it has a DataSetHelper that lets you use DataSets and DataTables to easily work with Excel data.ĮxcelLibrary seems to still only work for the older Excel format (.xls files), but may be adding support in the future for newer 2007/2010 formats.

xlsx format yet, but they are working on adding that functionality in.

This looks to be a port of the PHP ExcelWriter that you mentioned above. It's a free, open source library posted on Google Code: You can use a library called ExcelLibrary.
