ADODatabase.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*************************************************************
  2. /* Copyright (C), 2014-2020, lyfz. Co., Ltd.
  3. /* 文件名: ADODatabase.h
  4. /* 作者: Jeff.w
  5. /* 创建日期: 2014-08-16
  6. /* 版本号: V1.0
  7. /* 描述: 核心层底,数据库ADO编程
  8. /* 其它:
  9. /* 主要类模块:
  10. /* 历史修改记录:
  11. /* 作者 时间 版本 描述
  12. /* Jeff.w 14/08/18 1.0 创建这个模块
  13. ***************************************************************/
  14. #ifndef __ADO_DATABASE_HEADER__
  15. #define __ADO_DATABASE_HEADER__
  16. #pragma once
  17. #include "AdoDef.h"
  18. class CADODatabase
  19. {
  20. public:
  21. CADODatabase()
  22. {
  23. ::CoInitialize(NULL);
  24. m_pConnection = NULL;
  25. m_strConnection = _T("");
  26. m_strLastError = _T("");
  27. m_dwLastError = 0;
  28. m_pConnection.CreateInstance(__uuidof(Connection));
  29. }
  30. ~CADODatabase()
  31. {
  32. Close();
  33. m_pConnection.Release();
  34. m_pConnection = NULL;
  35. m_strConnection = _T("");
  36. m_strLastError = _T("");
  37. m_dwLastError = 0;
  38. ::CoUninitialize();
  39. }
  40. BOOL Execute(LPCTSTR lpstrExec);
  41. BOOL Open(LPCTSTR lpstrConnection = _T(""), LPCTSTR lpstrUserID = _T(""), LPCTSTR lpstrPassword = _T(""));
  42. BOOL IsOpen();
  43. void Close();
  44. // inline func;
  45. inline _ConnectionPtr GetActiveConnection() {return m_pConnection;};
  46. inline DWORD GetRecordCount(_RecordsetPtr m_pRs);long BeginTransaction() {return m_pConnection->BeginTrans();};
  47. inline long CommitTransaction() {return m_pConnection->CommitTrans();};
  48. inline long RollbackTransaction() {return m_pConnection->RollbackTrans();};
  49. inline void SetConnectionString(LPCTSTR lpstrConnection){m_strConnection = lpstrConnection;};
  50. inline CString GetConnectionString(){return m_strConnection;};
  51. inline CString GetLastErrorString() {return m_strLastError;};
  52. inline DWORD GetLastError(){return m_dwLastError;};
  53. protected:
  54. void dump_com_error(_com_error &e);
  55. public:
  56. _ConnectionPtr m_pConnection;
  57. protected:
  58. CString m_strConnection;
  59. CString m_strLastError;
  60. DWORD m_dwLastError;
  61. };
  62. #endif