#pragma once
// SQL2005Client.h
#include <afxdb.h>
#include <afxdao.h>
#include <afxwin.h> // MFC 核心和标准组件
#include <afxext.h> // MFC 扩展
#include <afxdisp.h> // MFC 自动化类
#include <afxdtctl.h> // Internet Explorer 4 公共控件的 MFC 支持
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // Windows 公共控件的 MFC 支持
#endif // _AFX_NO_AFXCMN_SUPPORT
#include "afxcmn.h"
#define RS_FREE(rs) if(rs.IsOpen())rs.Close();
class CSQL2005Client
{
CDatabase m_database;
CString m_strConnectString;
public:
CSQL2005Client(void);
~CSQL2005Client(void);
bool Conn(LPCTSTR ip , LPCTSTR user , LPCTSTR pass ,LPCTSTR db );
BOOL OpenRecordset (CRecordset& m_rs , CString strSQL );
BOOL ExecuteSQL (LPCTSTR strSQL);
};
#include "StdAfx.h"
#include ".\sql2005client.h"
//sql2005client.