现在的位置: 首页 > 综合 > 正文

atlcom.h(2945) : error C2065: ‘_Module’ : undeclared identifier

2013年01月09日 ⁄ 综合 ⁄ 共 725字 ⁄ 字号 评论关闭

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.

抱歉!评论已关闭.