Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The following example assumes you are adding OLE DB Consumer support to an existing ATL project. If you want to add OLE DB Consumer support to an MFC application, you should run the MFC AppWizard, which creates all of the support necessary and invokes MFC routines necessary to execute the application.
To add OLE DB Consumer support without using the ATL Object Wizard:
In your Stdafx.h file, add the following code below the afx include statement:
#include <atlbase.h> extern CComModule _Module; #include <atlcom.h> #include <atldbcli.h> #include <atldbsch.h> // if you are using schema templates
In your Stdafx.cpp file, add the following code below the stdafx.h include statement:
#include <atlimpl.cpp> CComModule _Module;
Decide what type of accessor and rowset to use.
See Creating an OLE DB Consumer for more information.