sql2005 mfc db 类(CDatabase)

本文介绍了如何在MFC应用中使用CDatabase类与SQL Server 2005进行数据库交互,包括连接数据库、执行SQL语句以及数据的读取和写入操作。
摘要由CSDN通过智能技术生成
#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.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值