Click here to Skip to main content
Click here to Skip to main content

Reading and Writing Excel using OLEDB

By , 28 Oct 2004
 

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:

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:

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:

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

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

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

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

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.
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

About the Author

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

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 4memberliuchao30522-Apr-13 19:33 
BugBUG in ColNumber functionmemberlucagabrielli17-Jul-12 22:39 
GeneralMy vote of 5memberCarlos Bordachar5-Jul-12 6:46 
QuestionMy vote of 5memberjp2code18-Jul-11 11:13 
GeneralRegarding form controls in excelmemberSundeep Ganiga18-Mar-10 20:53 
Generalreading numbers with leading zero'smemberFreddieH8516-Aug-09 23:36 
QuestionInserting takes too much timememberadamshuv30-Apr-09 1:16 
AnswerRe: Inserting takes too much timemembergg423726-Aug-09 6:43 
Generaldata retrieve from Excelmemberviki24627-Apr-09 17:19 
GeneralRe: data retrieve from Excelmemberguyanese4life222-Jun-10 5:51 
GeneralRead Formulamembermrtom8418-Nov-07 11:57 
GeneralRange Problem Large Sheet Namememberrmoreirao24-Oct-07 4:34 
GeneralGood JobmemberYasin HINISLIOGLU24-Jul-07 4:01 
GeneralFixed BUG in 'GetExcelSheetNames'memberCabbi18-May-07 2:11 
NewsFixed BUG in 'SetValue'memberCabbi17-May-07 21:00 
Questionhow to populate column in thismemberRavi shuk11-Apr-07 3:00 
Generalhelp me plzzzmemberRavi shuk10-Apr-07 2:15 
Generalproblem with no of columns in excelmemberRavi shuk10-Apr-07 2:13 
Generalproblems with no of columns in ExcelmemberRavi shuk9-Apr-07 20:51 
GeneralSetSheetQueryAdapter bugsmemberYI Tan12-Mar-07 17:34 
GeneralSheet Range ErrormemberYI Tan12-Mar-07 16:20 
GeneralRe: Sheet Range ErrormemberHenrik Jørgensen14-Dec-08 23:36 
GeneralNull Values Returned with Mixed Data TypesmemberSMJHUNT6-Feb-07 10:49 
GeneralRe: Null Values Returned with Mixed Data TypesmemberJohnny Glenn16-Apr-12 21:26 
GeneralTruncates at 255 charactersmembersjgregory11-Jan-07 21:27 
GeneralRe: Truncates at 255 charactersmembersjgregory28-Jan-07 23:19 
GeneralRe: Truncates at 255 characters [modified]membertridy26-May-08 1:33 
QuestionCreating M$ Excel file using OleDBmemberSlawomir3-Jan-07 0:00 
GeneralExcellentmemberMarcelo Calado19-Dec-06 7:29 
QuestionSetTablememberAli Webster12-Dec-06 5:14 
QuestionReading a single digit number from Excel file returns dbnullmembertua67112-Oct-06 9:28 
AnswerRe: Reading a single digit number from Excel file returns dbnullmemberKim Young Gi12-Apr-07 23:26 
GeneralOLE DB Results are Dubiousmembermcljava15-Mar-06 6:54 
GeneralProblem with SaveDatamemberpeterhat5-Mar-06 2:13 
GeneralTo Read Active SheetmemberSteven Zhao17-Feb-06 3:58 
GeneralBug - won't read column 72+memberhumptydumpty2831-Jan-06 11:08 
Generaldemo projectmembergr47729-Nov-05 23:30 
GeneralAlternative waymemberJan Gex27-Sep-05 3:32 
GeneralRe: Alternative waymembernsimeonov10-Nov-05 6:22 
GeneralReading Excel using OLEDB_ error formatmembervythu16-Sep-05 17:49 
GeneralThanks!!memberafhall9-Sep-05 8:00 
GeneralReading data from excel sheet and copying it to SQL ServermemberAshishKaistha25-Aug-05 7:32 
GeneralRe: Reading data from excel sheet and copying it to SQL ServersussNavneet Kedar25-Aug-05 9:10 
GeneralRe: Reading data from excel sheet and copying it to SQL ServermemberLotharurs_swe12-Sep-05 1:41 
GeneralExternal table is not in the expected format.memberwalkinator21-Aug-05 8:58 
GeneralSelect Range bugsussPär Sandgren2-Aug-05 3:59 
GeneralRe: Select Range bugmemberPrem Joy22-Apr-06 1:46 
GeneralRe: Select Range bugmemberKikoz6818-Aug-06 9:27 
GeneralHelp Regarding Excel FilesmemberWahaj Khan22-Jun-05 1:55 
GeneralProblem with Excel ColumnmemberR.Aravind26-May-05 20:00 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130617.1 | Last Updated 29 Oct 2004
Article Copyright 2004 by Dieder Timmerman
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid