5,667,575 members and growing! (15,569 online)
Email Password   helpLost your password?
Database » Database » General     Intermediate

Reading Excel files using ODBC

By Alexander Mikula

A discussion and demonstration of reading Excel files using ODBC
SQL, VC6, C++Windows, NT4, SQL Server, VS6, Visual Studio, DBA, Dev

Posted: 12 Jan 2000
Updated: 12 Jan 2000
Views: 208,512
Bookmarked: 53 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
37 votes for this Article.
Popularity: 6.82 Rating: 4.35 out of 5
0 votes, 0.0%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
4 votes, 30.8%
4
9 votes, 69.2%
5
  • Download demo project - 20 Kb
  • The Problem

    After contributing that article about writing into an Excel file I got tons of requests about how to read from one. Well, you asked for it...

    The main problem is that you can´t read an Excel file without previously having some formatting done. Microsoft refers to this in one of their KB papers. If somewhere out there finds there´s a way to do the reading whithout the formatting, please let me know...

    Another problem is the DSN you need to have installed in your ODBC Admin. This is not very useful because you don´t always know the name of the Excel file from the start.

    The last problem I´m dealing with here is generally doing ODBC reading using CRecordset without deriving from it. That is because if I always have to create a class for every single table I want to use, I´ll end up with lots of rather unnecessary code enlarging my app´s exe.

    The Solution

    1. According to Microsoft, an Excel sheet of version 4.x and later can only be read by ODBC if a database range is defined. Unfortunately they don´t state how to do this exactly. One way to let ODBC know what data is in there is to name a range of data on a worksheet using "Insert/Names" from Excel´s menu. There can be more than one "table" on a worksheet. This means that a sheet isn´t necessarily the same as a table in a "real" database. If you open "ReadExcel.xls" from the attached demo project and look up the names, you´ll see what I mean...
    2. Omiting the DSN tag in the connect string of CDatabase:Open() gives the opportunity to refer the ODBC-Driver directly using its name so we don´t have to have a DSN registered. This, of course, implies that the name of the ODBC-Driver is exactly known. If it isn´t, a call to SQLGetInstalledDrivers() will show all the installed drivers. For an example see CReadExcelDlg::GetExcelDriver() below.
    3. To use CRecordset the plain way you have to use a readonly, foreward only recordset. The data to get is defined by the SQL statement you put into CRecordset::Open(). Reading out the result is done by CRecordset::GetFieldValue(). For an example see the code below.

    What is needed

    In order to get the code below going you have to

  • include <afxdb.h>
  • include <odbcinst.h>
  • install an ODBC-driver called "MICROSOFT EXCEL DRIVER (*.XLS)" (or something like that)
  • You must use an ODBC Admin version 3.5 or higher
  • Drawbacks

    Using a pseudo DSN only works with ODBC Admin V3.51 and higher. Earlier versions will not be able to use a DSN that actually isn´t installed. The result of an attempt to do so is some mumbling about missing registry keys.

    If using an underived CRecordset it needs to be readonly, foreward only. So any attempts to change the data or to move back will fail horribly. If you need to do something like that you´re bound to use CRecordset the "usual" way. Another drawback is that the tremendous overhead of CRecordset does in fact make it rather slow. A solution to this would be using the class CSQLDirect contributed by Dave Merner at http://www.codeguru.com/mfc_database/direct_sql_with_odbc.shtml.

    There´s still work to do

    One unsolved mystery in reading those files is how to get the data WITHOUT having a name defined for it. That means how can the structure of the data be retrieved, how many "tables" are in there, and so on. If you have any idea about that I´d be glad to read it under almikula@EUnet.at (please make a CC to alexander.mikula@siemens.at).

    The Source Code

    // Query an Excel file
    
    void CReadExcelDlg::OnButton1() 
    {
        CDatabase database;
        CString sSql;
        CString sItem1, sItem2;
        CString sDriver;
        CString sDsn;
        CString sFile = "ReadExcel.xls"; // the file name. Could also be something
    
                                         //  like C:\\Sheets\\WhatDoIKnow.xls
    
        
        // Clear the contents of the listbox
    
        m_ctrlList.ResetContent();
        
        // Retrieve the name of the Excel driver. This is 
    
        // necessary because Microsoft tends to use language
    
        // specific names like "Microsoft Excel Driver (*.xls)" versus
    
        // "Microsoft Excel Treiber (*.xls)"
    
        sDriver = GetExcelDriver();
        if (sDriver.IsEmpty())
        {
            // Blast! We didn´t find that driver!
    
            AfxMessageBox("No Excel ODBC driver found");
            return;
        }
        
        // Create a pseudo DSN including the name of the Driver and the Excel file
    
        // so we don´t have to have an explicit DSN installed in our ODBC admin
    
        sDsn.Format("ODBC;DRIVER={%s};DSN='';DBQ=%s", sDriver, sFile);
    
        TRY
        {
            // Open the database using the former created pseudo DSN
    
            database.Open(NULL, false, false, sDsn);
            
            // Allocate the recordset
    
            CRecordset recset(&database);
    
            // Build the SQL string
    
            // Remember to name a section of data in the Excel sheet using
    
            // "Insert->Names" to be able to work with the data like you would
    
            // with a table in a "real" database. There may be more than one table
    
            // contained in a worksheet.
    
            sSql = "SELECT field_1, field_2 "       
                   "FROM demo_table "                 
                   "ORDER BY field_1";
        
            // Execute that query (implicitly by opening the recordset)
    
            recset.Open(CRecordset::forwardOnly, sSql, CRecordset::readOnly);
    
            // Browse the result
    
            while (!recset.IsEOF())
            {
                // Read the result line
    
                recset.GetFieldValue("field_1", sItem1);
                recset.GetFieldValue("field_2", sItem2);
    
                // Insert result into the list
    
                m_ctrlList.AddString(sItem1 + " --> "+sItem2);
    
                // Skip to the next resultline
    
                recset.MoveNext();
            }
    
            // Close the database
    
            database.Close();
                                 
        }
        CATCH(CDBException, e)
        {
            // A database exception occured. Pop out the details...
    
            AfxMessageBox("Database error: " + e->m_strError);
        }
        END_CATCH;
    }
    
    
    // Get the name of the Excel-ODBC driver 
    
    // Contibuted by Christopher W. Backen - Thanx Christoper
    
    CString CReadExcelDlg::GetExcelDriver()
    {
        char szBuf[2001];
        WORD cbBufMax = 2000;
        WORD cbBufOut;
        char *pszBuf = szBuf;
        CString sDriver;
    
        // Get the names of the installed drivers
    
        // ("odbcinst.h" has to be included )
    
        if (!SQLGetInstalledDrivers(szBuf, cbBufMax, &cbBufOut))
            return "";
        
        // Search for the driver...
    
        do
        {
            if (strstr(pszBuf, "Excel") != 0)
            {
                // Found !
    
                sDriver = CString(pszBuf);
                break;
            }
            pszBuf = strchr(pszBuf, '\0') + 1;
        }
        while (pszBuf[1] != '\0');
    
        return sDriver;
    }
    

    Please refer the demo project (ReadExcelDlg.cpp) for more details.

    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

    Alexander Mikula



    Location: Austria Austria

    Other popular Database articles:

    Article Top
    Sign Up to vote for this article
    You must Sign In to use this message board.
    FAQ FAQ Noise ToleranceSearch Search Messages 
     Layout  Per page   
     Msgs 1 to 25 of 49 (Total in Forum: 49) (Refresh)FirstPrevNext
    GeneralSize of field problemmemberyongdiego14:52 29 Jul '08  
    GeneralFiring query against EXCEL in Java servletsussViral3:21 4 Dec '07  
    GeneralError in GetExcelDriver()memberJochen Arndt3:37 23 Aug '07  
    GeneralWriting the files to ACCESS instead of Excelmemberzouris14:02 2 Jul '07  
    GeneralProblem running the example projectmembertantraseeker5:50 14 May '07  
    GeneralRe: Problem running the example projectmembernitin_ap2:24 18 May '07  
    GeneralReading from ExcelmemberBiswajit Ghosh7:36 15 Mar '07  
    GeneralI ha ve more than three rows , this program reads only 3 rows.memberrajendrappa21:44 5 Dec '06  
    GeneralRe: I ha ve more than three rows , this program reads only 3 rows.memberMember 482164917:46 8 Jan '08  
    Generalexcel project deploymentmemberfatih isikhan4:59 11 Apr '06  
    GeneralReading from excel without formattingmemberhupu2:22 15 Dec '05  
    QuestionReading/Writing Excel sheets in unix using C++memberTanz6:14 21 Sep '05  
    AnswerRe: Reading/Writing Excel sheets in unix using C++memberlogitecherrr4:06 22 Jul '06  
    GeneralHow to use a SQL clause?memberDisen21:05 30 Mar '05  
    GeneralDatabase Errormemberektoplasma20002:21 21 Feb '05  
    GeneralHelp!! How to read 2 or more columns?memberhelen_kwan17:17 12 Jan '05  
    GeneralRe: Help!! How to read 2 or more columns?memberhelen_kwan17:32 12 Jan '05  
    GeneralAn Error messagesussQTina11:06 2 Dec '04  
    GeneralReading table names from excelfile.memberArd Kunst2:28 2 Dec '04  
    GeneralRe: Reading table names from excelfile.memberJR Cooper10:25 13 Feb '06  
    GeneralRe: Reading table names from excelfile.membermarkusschroth22:53 16 Jul '07  
    Generalchange font style and colors in spreadsheet?sussxxhimanshu20:08 23 Feb '04  
    Generaldeleting from excelmemberpaoloromani22:55 19 Feb '04  
    Generaltype dependencemembergok14:31 2 Feb '04  
    GeneralRe: type dependencememberacerunner31616:27 13 Jun '07  

    General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

    PermaLink | Privacy | Terms of Use
    Last Updated: 12 Jan 2000
    Editor: Chris Maunder
    Copyright 2000 by Alexander Mikula
    Everything else Copyright © CodeProject, 1999-2008
    Web12 | Advertise on the Code Project