Click here to Skip to main content
15,868,016 members
Articles / Programming Languages / C#
Article

Reading and Writing Excel using OLEDB

Rate me:
Please Sign up or sign in to vote.
4.61/5 (55 votes)
28 Oct 20044 min read 881.9K   26.5K   228   98
Shows how to use OLEDB to read from and write to Excel workbook files.

Application screenshot

Introduction

This project contains an ExcelReader class. This class reads Excel files by using the OLEDB driver. Many articles already have been written about it. This class however is an easy way to read and write Excel values. It's possible to read or write single values or data tables.

However, due to restrictions in the Excel driver, it is not possible to delete rows from a table. Updating a empty range is also not an option. It's possible to read an range and updating or inserting an existing range. Excel has his own way of datatatyping the column. DaberElay made a response according to my article with:

How does it happen?

Apparently, the engine reads the first 8 cells of each column and check it's data type. if most of the first 8 cells are int / double, the problem remains.

Is this solveable ? Yes and No. We can ask that the engine will check more than 8 cells ( setting the registry value

HKLM\Software\Microsoft\Jet\4.0\Engines\Excel\TypeGuessRows to 0 which will check the first 16,000 rows, and holds a small performance hit ).

But if all your first 16000 rows are numeric and only then you have textual values, you are in a problem.

Another thing we can do is set the TypeGuessRows to 1,and set the connection string's extended property - HDR to No, so if you always have headers in your excel it will read the first row and decide that its a text field.

Notice however, that this means you will have to create the column names from the unnecessary extra first row you now have in your rows.

If the OLEDB solution does not fit your needs, you may buy a component for it. There are some components to read or wrrite the Excel files without MS Excel and are able to edit.

Here are some ideas.

Background

For a project, I needed to read and write MS Excel-files on a web server. The MS Excel file would be uploaded and be read on the server into a SQL Server database.

Normally, I would have used the XML grammar Microsoft has published for the web. Unfortunately, this is a grammar supported by MS Excel 2002 or higher. It makes it easier to make a component to modify and read Excel workbooks. Only in my projects, the clients always use older software like MS Excel '97 that do not support this XML. I also like to choose a solution which uses just one version of Excel 2002 with a programmed converter class. Only this process will run on a web server where MS Office and its components are not scalable and not allowed. Also read what Microsoft says about it. So, I started a class that uses the OLEDB driver that can do some primary tasks with the uploaded Excel file.

Using the code

The demo form uses the following code to initialize the ExcelReader class:

C#
exr = new ExcelReader();
_dt = new DataTable("par");
exr.KeepConnectionOpen =true;
exr.ExcelFilename = _strExcelFilename;
exr.Headers =false;
exr.MixedData =true;
exr.SheetName = this.txtSheet.Text;
exr.SheetRange = this.txtRange.Text;
exr.SetPrimaryKey(0);
_dt = exr.GetTable();

First, create a new instance of this class. Also declare a DataTable. I prefer it to have it as a private class variable. After updating a grid, I will use the table variable to update the table with the ExcelReader class. The keepconnection open property keeps the connection open after an ExcelReader operation, and saves time. The header options mean, if there is a rowheader row in MS Excel to explain the columndata. The MixedData property uses the IMEX option (0=export, 1=import, 2=linked). By default, the property is true and IMEX =2. If false, there is no IMEX option in the connection string. Also set the sheetname and the range.

The primary key is needed to be able to update the Excel sheet. It now supports just one primary key, but the class can be extended. If the table has no primary key, the DataAdapter will not work. The Excel driver does not discover primary keys, so it must be set manually. The DataColumnNumber 0 is the first column of the range set. The GetTable() returns the data of the requested Excel range in a DataTable. Updating of the range in the Excel file itself can be done with the SetTable(DataTable) method. Just download the demo and take a look.

How it's done

First, set the connection:

C#
private string ExcelConnection()
{
    return
        @"Provider=Microsoft.Jet.OLEDB.4.0;" + 
        @"Data Source=" + _strExcelFilename  + ";" + 
        @"Extended Properties=" + Convert.ToChar(34).ToString() + 
        @"Excel 8.0;"+ ExcelConnectionOptions() + Convert.ToChar(34).ToString(); 
}
#endregion

Open the connection:

C#
_oleConn = new OleDbConnection(ExcelConnection());
_oleConn.Open();

And just make a OledbCommand to select with a text like select * from [sheetname$[range].

C#
_oleCmdSelect =new OleDbCommand(
    @"SELECT * FROM [" 
    + _strSheetName 
    + "$" + _strSheetRange
    + "]", _oleConn);

Fill the table with the select command to retrieve the data actually:

C#
OleDbDataAdapter oleAdapter = new OleDbDataAdapter();
oleAdapter.SelectCommand = _oleCmdSelect;
DataTable dt = new DataTable(strTableName);
oleAdapter.FillSchema(dt,SchemaType.Source);
oleAdapter.Fill(dt);

Updating the table:

First set the primary key(s). Then call the update method to update the excel table. Try in the demo to update an empty range! An error will occur.
C#
if (this._intPKCol>-1)
{
    int[] intPKCols = new int[]  { _intPKCol};
    _exr.PKCols = intPKCols;
}
_exr.SetTable(_dt); 

History

  • 1.1 Fixed some bugs and added some functions
    • The Excel sheetnames can be retrieved with a method call.
    • Functions to retrieve the real excel column names or the columnnumbers.
    • Fixed some bugs in connection string and SetSheetQueryAdapter.
  • 1.0 Initial ExcelReader class.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Netherlands Netherlands
I am Dieder Timmerman. I work as Senior Software Engineer at Ordina. I have MCSD.

Comments and Discussions

 
GeneralRe: Truncates at 255 characters Pin
sjgregory28-Jan-07 23:19
sjgregory28-Jan-07 23:19 
GeneralRe: Truncates at 255 characters [modified] Pin
tridy26-May-08 1:33
tridy26-May-08 1:33 
QuestionCreating M$ Excel file using OleDB Pin
Slawomir3-Jan-07 0:00
Slawomir3-Jan-07 0:00 
GeneralExcellent Pin
Marcelo Calado19-Dec-06 7:29
Marcelo Calado19-Dec-06 7:29 
QuestionSetTable Pin
Ali Webster12-Dec-06 5:14
Ali Webster12-Dec-06 5:14 
QuestionReading a single digit number from Excel file returns dbnull Pin
tua67112-Oct-06 9:28
tua67112-Oct-06 9:28 
AnswerRe: Reading a single digit number from Excel file returns dbnull Pin
Kim Young Gi12-Apr-07 23:26
Kim Young Gi12-Apr-07 23:26 
GeneralOLE DB Results are Dubious Pin
mcljava15-Mar-06 6:54
mcljava15-Mar-06 6:54 
GeneralProblem with SaveData Pin
peterhat5-Mar-06 2:13
peterhat5-Mar-06 2:13 
GeneralTo Read Active Sheet Pin
Steven Zhao17-Feb-06 3:58
Steven Zhao17-Feb-06 3:58 
GeneralBug - won't read column 72+ Pin
humptydumpty2831-Jan-06 11:08
humptydumpty2831-Jan-06 11:08 
Generaldemo project Pin
gr47729-Nov-05 23:30
gr47729-Nov-05 23:30 
GeneralAlternative way Pin
Jan Gex27-Sep-05 3:32
Jan Gex27-Sep-05 3:32 
GeneralRe: Alternative way Pin
nsimeonov10-Nov-05 6:22
nsimeonov10-Nov-05 6:22 
GeneralReading Excel using OLEDB_ error format Pin
vythu16-Sep-05 17:49
vythu16-Sep-05 17:49 
GeneralThanks!! Pin
afhall9-Sep-05 8:00
afhall9-Sep-05 8:00 
GeneralReading data from excel sheet and copying it to SQL Server Pin
AshishKaistha25-Aug-05 7:32
AshishKaistha25-Aug-05 7:32 
GeneralRe: Reading data from excel sheet and copying it to SQL Server Pin
Navneet Kedar25-Aug-05 9:10
sussNavneet Kedar25-Aug-05 9:10 
GeneralRe: Reading data from excel sheet and copying it to SQL Server Pin
P.Sandgren12-Sep-05 1:41
professionalP.Sandgren12-Sep-05 1:41 
GeneralExternal table is not in the expected format. Pin
walkinator21-Aug-05 8:58
walkinator21-Aug-05 8:58 
GeneralSelect Range bug Pin
P.Sandgren2-Aug-05 3:59
professionalP.Sandgren2-Aug-05 3:59 
GeneralRe: Select Range bug Pin
Prem Joy22-Apr-06 1:46
Prem Joy22-Apr-06 1:46 
GeneralRe: Select Range bug Pin
Kikoz6818-Aug-06 9:27
Kikoz6818-Aug-06 9:27 
GeneralHelp Regarding Excel Files Pin
Wahaj Khan22-Jun-05 1:55
Wahaj Khan22-Jun-05 1:55 
GeneralProblem with Excel Column Pin
R.Aravind26-May-05 20:00
R.Aravind26-May-05 20:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.