ADOCommand.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*************************************************************
  2. /* Copyright (C), 2014-2020, lyfz. Co., Ltd.
  3. /* 文件名: **.h
  4. /* 作者: Jeff.w
  5. /* 创建日期: 2014-08-16
  6. /* 版本号: V1.0
  7. /* 描述: 核心层底,数据库ADO编程
  8. /* 其它:
  9. /* 主要类模块:
  10. /* 历史修改记录:
  11. /* 作者 时间 版本 描述
  12. /* Jeff.w 14/08/16 1.0 创建这个模块
  13. ***************************************************************/
  14. #ifndef __ADO_COMMAND_HEADER__
  15. #define __ADO_COMMAND_HEADER__
  16. #pragma once
  17. #include "AdoDef.h"
  18. #include "ADODatabase.h"
  19. #include "ADOParameter.h"
  20. class CADOCommand
  21. {
  22. public:
  23. enum cadoCommandType
  24. {
  25. typeCmdText = adCmdText,
  26. typeCmdTable = adCmdTable,
  27. typeCmdTableDirect = adCmdTableDirect,
  28. typeCmdStoredProc = adCmdStoredProc,
  29. typeCmdUnknown = adCmdUnknown,
  30. typeCmdFile = adCmdFile
  31. };
  32. CADOCommand(CADODatabase* pAdoDatabase, CString strCommandText = _T(""), int nCommandType = typeCmdStoredProc);
  33. ~CADOCommand()
  34. {
  35. m_pCommand.Release();
  36. m_pCommand = NULL;
  37. m_strCommandText = _T("");
  38. }
  39. void SetText(CString strCommandText);
  40. void SetType(int nCommandType);
  41. BOOL AddParameter(CADOParameter* pAdoParameter);
  42. BOOL AddParameter(CString strName, int nType, int nDirection, long lSize, int nValue);
  43. BOOL AddParameter(CString strName, int nType, int nDirection, long lSize, long lValue);
  44. BOOL AddParameter(CString strName, int nType, int nDirection, long lSize, double dblValue);
  45. BOOL AddParameter(CString strName, int nType, int nDirection, long lSize, CString strValue);
  46. BOOL AddParameter(CString strName, int nType, int nDirection, long lSize, COleDateTime time);
  47. BOOL AddParameter(CString strName, int nType, int nDirection, long lSize, _variant_t vtValue);
  48. // inline func;
  49. inline int GetType(){return m_nCommandType;};
  50. inline CString GetText(){return m_strCommandText;};
  51. inline _CommandPtr GetCommand(){return m_pCommand;};
  52. protected:
  53. void dump_com_error(_com_error &e);
  54. protected:
  55. _CommandPtr m_pCommand;
  56. int m_nCommandType;
  57. CString m_strCommandText;
  58. CString m_strLastError;
  59. DWORD m_dwLastError;
  60. };
  61. #endif