Click here to Skip to main content
15,886,362 members
Articles / Programming Languages / C#

Microsoft OLEDB Adapter for Microsoft Excel 2007

Rate me:
Please Sign up or sign in to vote.
1.36/5 (6 votes)
17 May 2009CPOL1 min read 47.6K   20   6
Microsoft OLEDB adapter for Microsoft Excel 2007.

Introduction

This article is for developers who want to play with different Office files (*.csv, *.xlsx, *.xls, *.doc) without Office being installed on the machine, by using Microsoft OLEDB Jet drivers. I am writing this article to just help you out with Microsoft Jet OLEDB problems with Microsoft Office 2007.

Background

Recently, I was working on my application for dynamic data to get data from Excel sheets. I was using Microsoft Jet OLEDB drivers for Excel 8.0 ISAM. It was working fine with *.xls extensions. But, I came across the problem of Microsoft Excel 2007 *.xlsx not working with Microsoft Jet OLEDB for Excel 8.0. One of the reason might be ISAM missing for Microsoft Excel 2007.

Using the code

I will not be explaining the whole phenomenon of getting Excel sheets from an Excel file and getting data from these sheets. You can find an article on working with Microsoft Jet OLEDB with Excel from CodeProject. However, I will guide you through the problem of connecting Excel 2007 with Microsoft Jet OLEDB.

What you have to do is change the connection string as follows. Remember to test this. You should have Microsoft Office 2007 (or Microsoft.Ace.Oledb components installed that you can find at: http://www.microsoft.com/downloads/details.aspx?FamilyID=7554F536-8C28-4598-9B72-EF94E038C891&displaylang=en) installed.

C#
private string mExcelCon = @"Provider=Microsoft.ACE.OLEDB.12.0;";

private string mConnectionString; 
mConnectionString = mExcelCon + "Data Source=" + fileName + 
                    ";Extended Properties=" + Convert.ToChar(34).ToString() + 
                    "Excel 12.0;HDR=Yes" + Convert.ToChar(34).ToString();

Microsoft.Ace.Oledb 12.0 supports all Microsoft Excel versions up till 2007.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
GeneralMy vote of 1 Pin
BillW332-Sep-14 2:48
professionalBillW332-Sep-14 2:48 
GeneralMy vote of 1 Pin
Syed J Hashmi9-Jan-13 3:01
Syed J Hashmi9-Jan-13 3:01 
GeneralMy vote of 1 Pin
Aamer Alduais28-Apr-12 22:26
Aamer Alduais28-Apr-12 22:26 
GeneralMy vote of 2 Pin
PuneWala22-Jul-10 22:25
PuneWala22-Jul-10 22:25 
GeneralMy vote of 1 Pin
Mario Majčica21-May-09 4:56
professionalMario Majčica21-May-09 4:56 
QuestionDoes it is not really obvious? Pin
cybertone17-May-09 20:40
cybertone17-May-09 20:40 

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.