Click here to Skip to main content
15,881,687 members
Articles / Programming Languages / C++
Article

How to use DAO in Visual C++ without MFC

Rate me:
Please Sign up or sign in to vote.
3.29/5 (6 votes)
26 Mar 2006CPOL1 min read 103K   31   21
Use the #import directive and discover the DAO type library.

Introduction

If you have ever used Data Access Objects (DAO) both in Visual Basic and Visual C++ with MFC, you must have noticed that in Visual Basic, manipulating Microsoft Access MDB files is a more enjoyable way of spending time than doing it in Visual C++ with MFC. And, you must have thought whether a workaround exists to make working with MDB in Visual C++ as flexible as in Visual Basic.

To solve this problem, let's try to use in Visual C++ the same mechanism as is used in Visual Basic. This mechanism assumes that you should work directly with type libraries. Unlike Visual Basic, which is more adapted for rapid application development and has its own methods for accessing type libraries, in Visual C++, working with type libraries is more preferable through converting the content of the type library into C++ classes with the #import directive.

The best way to understand this is by reading a sample source:

// daocpp.cpp
// Describe the full path to dao360.dll file. Interface files dao360.tlh and
// dao360.tli will be generated automatically during compilation.
// The #import directive creates "DAO" namespace to avoid name conflicts with 
// other libraries. So, all DAO members must be referenced with "DAO::" prefix,
// e.g. DAO::DBEngine

#import <C:\Program Files\Common Files\Microsoft Shared\DAO\dao360.dll>
#include <stdio.h>
#include <tchar.h>

// The following procedure dump_com_error and structure StartOle are borrowed from
// MSDN samples.
// Dump all COM errors to console

void dump_com_error(_com_error &e)
{
    _tprintf(_T("Oops - hit an error!\n"));
    _tprintf(_T("\tCode = %08lx\n"), e.Error());
    _tprintf(_T("\tCode meaning = %s\n"), e.ErrorMessage());
    _bstr_t bstrSource(e.Source());
    _bstr_t bstrDescription(e.Description());
    _tprintf(_T("\tSource = %s\n"), (LPCTSTR) bstrSource);
    _tprintf(_T("\a\tDescription = %s\n"), (LPCTSTR) bstrDescription);
}

// If this is placed in the scope of the smart pointers, they must be
// explicitly Release(d) before CoUninitialize() is called. If any reference
// count is non-zero, a protection fault will occur.

struct StartOle {
    StartOle() { CoInitialize(NULL); }
    ~StartOle() { CoUninitialize(); }
} _inst_StartOle;

// From this line everything will be commented with its VB analogue

void main()
{
    // Dim Dbe As DBEngine
    DAO::_DBEnginePtr Dbe(__uuidof(DAO::DBEngine));
    // Dim CurrDB As Database
    DAO::DatabasePtr CurrDB;
    // Dim stmp As String

    char stmp[1024]; // wide chars not used here for simplicity
    // (COM errors must be handled by C++ try/catch block)

    try {
        // Dbe.CreateDatabase("test.mdb", ";LANGID=0x0419;CP=1251;COUNTRY=7;", 
        // dbVersion40). 
        // (";COUNTRY=7" expression allows using "dd.mm.yy" date format in queries.
        // dbVersion40 constant creates a database with Access 2000 file format.
        // The value for Access 97 format is dbVersion30)

        CurrDB = Dbe->CreateDatabase("test.mdb", 
         ";LANGID=0x0419;CP=1251;COUNTRY=7;", _variant_t((short) DAO::dbVersion40));
        // Set CurrDB = Dbe.OpenDatabase("test.mdb")

        CurrDB = Dbe->OpenDatabase("test.mdb");
        // stmp = "CREATE TABLE ....."

        strcpy(stmp,"CREATE TABLE Test ( \
                        ARTIST Char(40), \
                        TITLE1 Char(60), \
                        FORMAT1 Char(9), \
                        CATNO Numeric, \
                        PRICE Numeric, \
                        DATEIN DateTime, \
                        NOTES Char(10) \
                        );");
        // CurrDB.Execute(stmp)

        CurrDB->Execute(stmp);
        // stmp = "INSERT INTO ....."

        strcpy(stmp,"INSERT INTO Test VALUES( \
                        \"Artist\", \
                        \"Title\", \
                        \"Format1\", \
                        1223, \
                        3231.54, \
                        '21.09.04', \
                        \"Notes\" \
                        );");
        // CurrDB.Execute(stmp)

        CurrDB->Execute(stmp);
        // for i=0 to CurrDB.TableDefs.Count

        // (for all tables in database including system tables)

        for (int i=0; i < CurrDB->TableDefs->Count; i++)
         {
            // Debug.Print CurrDB.TableDefs(i).Name

            _variant_t vI = _variant_t((long) i);
            printf("%s\n", (char *) CurrDB->TableDefs->Item[vI]->Name);
         }
    } catch(_com_error &e) {
        dump_com_error(e);
    }
}

Compile this example in the command line as:

cl -GX daocpp.cpp

and run daocpp.exe. The database file test.mdb will be created. This file will contain the table Test with one record of data.

As you can see, the types DBEngine and Database are mapped to the DAO::_DBEnginePtr and DAO::DatabasePtr C++ classes after incorporating information from the type library. The type TableDef will be mapped to _TableDefPtr.

Note: Using DAO requires converting C++ types to the variant type. In this sample, you can see that the C++ type long is converted to the type _variant_t:

_variant_t vI = _variant_t((long) i);

In the same way, for example, the logical values True and False of the bool type will be converted to the type _variant_t as:

_variant_t vTrue = _variant_t((bool) -1);
_variant_t vFalse = _variant_t((bool) 0);

I hope this short article will help you to write more efficient code in your applications.

License

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


Written By
Software Developer Kiev Computer Laboratory
Ukraine Ukraine
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionUsing querydefs in DAO Pin
VinayChoudhary992-Oct-11 20:57
VinayChoudhary992-Oct-11 20:57 
Questioncan someone show how to read MS Access by using DAO Pin
nuclph15-Dec-08 15:22
nuclph15-Dec-08 15:22 
GeneralThanks for the suggestions on using DAO as a COM object. Pin
Gene OK17-Apr-08 9:40
Gene OK17-Apr-08 9:40 
QuestionCan Somebody show this in standard C rather than C++ Pin
ConceptualCoder14-Aug-06 20:50
ConceptualCoder14-Aug-06 20:50 
GeneralProblem with OpenRecordset [modified] Pin
nhthiemsvt31-May-06 17:31
nhthiemsvt31-May-06 17:31 
QuestionErrors at compling Pin
Roey C25-Mar-06 3:08
Roey C25-Mar-06 3:08 
AnswerRe: Errors at compling Pin
Yuriy Tkachenko26-Mar-06 1:55
Yuriy Tkachenko26-Mar-06 1:55 
GeneralUnable to compile it Pin
AghaKhan3-Mar-06 15:50
AghaKhan3-Mar-06 15:50 
GeneralRe: Unable to compile it Pin
Yuriy Tkachenko4-Mar-06 7:42
Yuriy Tkachenko4-Mar-06 7:42 
GeneralRe: Unable to compile it Pin
FCPACHECO13-Aug-10 5:19
FCPACHECO13-Aug-10 5:19 
GeneralRe: Unable to compile it Pin
prompete16-Nov-10 3:02
prompete16-Nov-10 3:02 
General&quot;no_namespace&quot; issue Pin
mikanu10-Aug-05 14:16
mikanu10-Aug-05 14:16 
GeneralRe: &quot;no_namespace&quot; issue Pin
Yuriy Tkachenko12-Aug-05 0:23
Yuriy Tkachenko12-Aug-05 0:23 
GeneralRe: &amp;quot;no_namespace&amp;quot; issue Pin
Stone Free26-Mar-06 22:24
Stone Free26-Mar-06 22:24 
QuestionWhere is the &quot;better alternative&quot; in your work? Pin
WREY9-Aug-05 5:43
WREY9-Aug-05 5:43 
AnswerRe: Where is the &quot;better alternative&quot; in your work? Pin
mikanu9-Aug-05 11:34
mikanu9-Aug-05 11:34 
GeneralRe: Where is the &quot;better alternative&quot; in your work? Pin
WREY9-Aug-05 11:53
WREY9-Aug-05 11:53 
GeneralRe: Where is the &quot;better alternative&quot; in your work? Pin
mikanu10-Aug-05 8:52
mikanu10-Aug-05 8:52 
GeneralRe: Where is the &quot;better alternative&quot; in your work? Pin
Yuriy Tkachenko11-Aug-05 23:52
Yuriy Tkachenko11-Aug-05 23:52 
GeneralRe: Where is the &quot;better alternative&quot; in your work? Pin
Yuriy Tkachenko11-Aug-05 23:53
Yuriy Tkachenko11-Aug-05 23:53 
AnswerRe: Where is the "better alternative" in your work? Pin
Yuriy Tkachenko11-Aug-05 23:45
Yuriy Tkachenko11-Aug-05 23:45 

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.