If you ever used Data Access Objects (DAO) both in Visual Basic and Visual C++ with MFC, you must have noticed that in Visual Basic manipulating with Microsoft Access MDB files is a more enjoyable way of spending time than doing it in Visual C++ with MFC. And, you must have wondered whether a workaround exists to make work with MDB in Visual C++ so flexible as in Visual Basic.
To solve this problem, try to use in Visual C++ the same mechanism as it 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 to 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 reading a sample source:
// daocpp.cpp
// Describe the full path to the dao360.dll file. Interface files
// dao360.tlh and dao360.tli will be generated automatically
// during compilation.
// Usually, using namespaces is highly recommended. But, in this
// simple example, it’s not required (no_namespace). For more
// about the #import directive, read in MSDN.
#import <C:Program FilesCommon FilesMicrosoft SharedDAOdao360.dll>
no_namespace#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 the console
void dump_com_error(_com_error &e)
{
_tprintf(_T(“Oops – hit an error!n”));
_tprintf(_T(“tCode = %08lxn”), e.Error());
_tprintf(_T(“tCode meaning = %sn”), e.ErrorMessage());
_bstr_t bstrSource(e.Source());
_bstr_t bstrDescription(e.Description());
_tprintf(_T(“tSource = %sn”), (LPCTSTR) bstrSource);
_tprintf(_T(“atDescription = %sn”), (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
_DBEnginePtr Dbe(__uuidof(DBEngine));
// Dim CurrDB As Database
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 format is dbVersion30.)
CurrDB = Dbe->CreateDatabase(“test.mdb”,
“;LANGID=0x0419;CP=1251;COUNTRY=7;”,
_variant_t((short)dbVersion40));
// Set CurrDB = Dbe.OpenDatabase(“test.mdb”)
CurrDB = Dbe->OpenDatabase(“test.mdb”);
// 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(“%sn”, (char *) CurrDB->TableDefs->Item[vI]->Name);
}
// 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);
} 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 Test table with one record of data.
As you can see, the types DBEngine and Database are mapped to _DBEnginePtr and DatabasePtr C++ classes after incorporating information from the type library. Type TableDef will be mapped to _TableDefPtr, respectively.
Note: Using DAO requires converting C++ types to the variant type. In this sample, you can see that C++ type long is converted to 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 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 write more efficient code in your applications.