分享
 
 
 

ADO 方法访问数据库的封装接口(01)

王朝vc·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

数据库访问是软件开发过程中经常用到的,ADO方法访问数据库是现在Windows平台开发软件经常用到的方法,但是在ADO组件中,使用COM调用的时候,经常会出现各种异常,异常处理在开发过程中如果处理不当,经常会导致程序无法正常工作甚至崩溃。本人在开发软件过程中,对ADO方法进行了封装,把COM异常吸收在类的内部,这样引用的时候就不必考虑异常处理,使开发过程简单化。本次封装,没有支持全部的方法,只是把最基本的数据库访问方法进行了封装,能够满足一般的开发应用。使用封装类的一个好处是,如果系统需要扩展数据库,比如支持其他的数据库访问方法,只需要修改实现就可以了,不需要调整接口,也增强了软件的可扩展性。

1. DBConnectionImpl.h

#pragma once

typedef _ConnectionPtr CADOConnectionPtr;

class CDBConnectionImpl

{

//构造函数和析构函数

public:

CDBConnectionImpl(void);

virtual ~CDBConnectionImpl(void);

//copy 采用复制的方式,复制后两个连接是相同,复制后的任何一个副本关闭连接后,

//所有副本的连接都会关闭,需要注意

//copy constructor

CDBConnectionImpl(const CDBConnectionImpl& rConnectionImpl) ;

//operator =

CDBConnectionImpl& operator= (const CDBConnectionImpl& rConnectionImpl) ;

//接口函数

public:

//返回数据库连接

CADOConnectionPtr& GetConnection(void);

/*

* 判断当前连接是否已经创建对象

*/

BOOL isValid(void) ;

void SetErrorMessage(LPCTSTR szErrMsg,const char* szSourceFile=NULL,int nLine=0) ;

const CString& GetErrorMessage(void) ;

//是否自动关闭连接

BOOL GetAutoClose(void) ;

protected:

//数据库连接

CADOConnectionPtr m_pConnectionPtr;

//error message

CString m_strErrMsg ;

//是否自动关闭连接

BOOL m_bAutoClose ;

};

inline CADOConnectionPtr& CDBConnectionImpl::GetConnection(void)

{

return m_pConnectionPtr ;

};

inline BOOL CDBConnectionImpl::isValid(void)

{

return (m_pConnectionPtr != NULL) ;

};

inline const CString& CDBConnectionImpl::GetErrorMessage(void)

{

return m_strErrMsg;

}

inline BOOL CDBConnectionImpl::GetAutoClose(void)

{

return m_bAutoClose ;

}

2. DBConnectionImpl.cpp

#include "StdAfx.h"

#include ".\dbconnectionimpl.h"

#include "DBErrorMsgDefs.h"

#include "ErrorHandler\Win32ErrorMsg.h"

CDBConnectionImpl::CDBConnectionImpl(void):

m_bAutoClose(TRUE)

{

HRESULT hr = S_OK ;

try

{

hr = m_pConnectionPtr.CreateInstance(__uuidof(Connection));

if (FAILED(hr))

{

CString strErrMsg = CWin32ErrorMsg::GetHResultErrorDescription(hr) ;

SetErrorMessage((LPCTSTR)strErrMsg,__FILE__,__LINE__) ;

}

}

catch (_com_error &e)

{

SetErrorMessage((LPCTSTR)e.Description(),__FILE__,__LINE__) ;

}

catch (...)

{

SetErrorMessage(EXCEPTION_UNKNOWN,__FILE__,__LINE__) ;

}

}

//copy constructor

CDBConnectionImpl::CDBConnectionImpl(const CDBConnectionImpl& rConnectionImpl):

m_pConnectionPtr(NULL),

m_bAutoClose(FALSE)

{

*this = rConnectionImpl ;

}

//operator =

CDBConnectionImpl& CDBConnectionImpl::operator= (const CDBConnectionImpl& rConnectionImpl)

{

if(this == &rConnectionImpl)

{

return *this ;

}

//错误信息不复制

try

{

m_strErrMsg = _T("");

//关闭连接,并释放对象

if (m_pConnectionPtr != NULL)

{

if((m_pConnectionPtr->GetState() != adStateClosed) && (m_bAutoClose) )

{

m_pConnectionPtr->Close() ;

m_pConnectionPtr = NULL ;

}

}

//clone it from destination

if(rConnectionImpl.m_pConnectionPtr != NULL)

{

m_pConnectionPtr = rConnectionImpl.m_pConnectionPtr ;

}

m_bAutoClose = FALSE ;

}

catch (_com_error &e)

{

SetErrorMessage((LPCTSTR)e.Description(),__FILE__,__LINE__) ;

}

catch (...)

{

SetErrorMessage(EXCEPTION_UNKNOWN,__FILE__,__LINE__) ;

}

return *this ;

}

CDBConnectionImpl::~CDBConnectionImpl(void)

{

try

{

//关闭连接,并释放对象

if (m_pConnectionPtr != NULL)

{

if( (m_pConnectionPtr->GetState() != adStateClosed) && (m_bAutoClose) )

{

m_pConnectionPtr->Close() ;

}

m_pConnectionPtr = NULL ;

}

}

catch (_com_error &e)

{

SetErrorMessage((LPCTSTR)e.Description(),__FILE__,__LINE__) ;

}

catch (...)

{

SetErrorMessage(EXCEPTION_UNKNOWN,__FILE__,__LINE__) ;

}

}

void CDBConnectionImpl::SetErrorMessage(LPCTSTR szErrMsg,const char* szSourceFile,int nLine)

{

m_strErrMsg = szErrMsg ;

}

//end of this file DBConnectionImpl.cpp

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有