How Do I Add OLE DB Consumer Support To an MFC Application Without Using the Wizard?
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.
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.
本文详细介绍了在现有ATL项目中添加OLEDB消费者支持的方法,同时提供了在MFC应用中不使用向导添加OLEDB消费者支持的步骤。通过在Stdafx.h和Stdafx.cpp文件中添加特定代码,可以实现这一目标。
3077

被折叠的 条评论
为什么被折叠?



