在StdAfx.h文件中,#endif // _AFX_NO_AFXCMN_SUPPORT之前,加入:
#import "C:Program FilesCommon FilesSystemadomsado15.dll" no_namespace rename("EOF","adoEOF")
接着, 在My.cpp文件InitInstance方法中, AfxEnableControlContainer();之前,加入:
if(!AfxOleInit()) //初始化
{ AfxMessageBox( " initialize false!" ); }
我定了一个类,方便使用:
// ADODB.h
class CADODB
...{
public:
_ConnectionPtr m_pConnection;
_RecordsetPtr m_pRecordset;
_CommandPtr m_pCommand;
BOOL bOpenDB;
CString m_strSQL;
CADODB();
void ADOCo...[ 查看全文 ]