stmt_impl.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:6k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: stmt_impl.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:18:52  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.13
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef _STMT_IMPL_HPP_
  10. #define _STMT_IMPL_HPP_
  11. /* $Id: stmt_impl.hpp,v 1000.3 2004/06/01 19:18:52 gouriano Exp $
  12. * ===========================================================================
  13. *
  14. *                            PUBLIC DOMAIN NOTICE                          
  15. *               National Center for Biotechnology Information
  16. *                                                                          
  17. *  This software/database is a "United States Government Work" under the   
  18. *  terms of the United States Copyright Act.  It was written as part of    
  19. *  the author's official duties as a United States Government employee and 
  20. *  thus cannot be copyrighted.  This software/database is freely available 
  21. *  to the public for use. The National Library of Medicine and the U.S.    
  22. *  Government have not placed any restriction on its use or reproduction.  
  23. *                                                                          
  24. *  Although all reasonable efforts have been taken to ensure the accuracy  
  25. *  and reliability of the software and data, the NLM and the U.S.          
  26. *  Government do not and cannot warrant the performance or results that    
  27. *  may be obtained by using this software or data. The NLM and the U.S.    
  28. *  Government disclaim all warranties, express or implied, including       
  29. *  warranties of performance, merchantability or fitness for any particular
  30. *  purpose.                                                                
  31. *                                                                          
  32. *  Please cite the author in any work or product based on this material.   
  33. *
  34. * ===========================================================================
  35. *
  36. * File Name:  $Id: stmt_impl.hpp,v 1000.3 2004/06/01 19:18:52 gouriano Exp $
  37. *
  38. * Author:  Michael Kholodov
  39. *   
  40. * File Description:  Statement implementation
  41. *
  42. *
  43. * $Log: stmt_impl.hpp,v $
  44. * Revision 1000.3  2004/06/01 19:18:52  gouriano
  45. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.13
  46. *
  47. * Revision 1.13  2004/04/26 14:15:28  kholodov
  48. * Added: ExecuteQuery() method
  49. *
  50. * Revision 1.12  2004/04/22 15:14:53  kholodov
  51. * Added: PurgeResults()
  52. *
  53. * Revision 1.11  2004/04/12 14:25:33  kholodov
  54. * Modified: resultset caching scheme, fixed single connection handling
  55. *
  56. * Revision 1.10  2004/04/08 15:56:58  kholodov
  57. * Multiple bug fixes and optimizations
  58. *
  59. * Revision 1.9  2004/02/10 18:50:44  kholodov
  60. * Modified: made Move() method const
  61. *
  62. * Revision 1.8  2002/12/16 18:56:50  kholodov
  63. * Fixed: memory leak in CStatement object
  64. *
  65. * Revision 1.7  2002/12/05 17:37:23  kholodov
  66. * Fixed: potential memory leak in CStatement::HasMoreResults() method
  67. * Modified: getter and setter name for the internal CDB_Result pointer.
  68. *
  69. * Revision 1.6  2002/10/21 20:38:08  kholodov
  70. * Added: GetParentConn() method to get the parent connection from IStatement,
  71. * ICallableStatement and ICursor objects.
  72. * Fixed: Minor fixes
  73. *
  74. * Revision 1.5  2002/10/03 18:50:00  kholodov
  75. * Added: additional TRACE diagnostics about object deletion
  76. * Fixed: setting parameters in IStatement object is fully supported
  77. * Added: IStatement::ExecuteLast() to execute the last statement with
  78. * different parameters if any
  79. *
  80. * Revision 1.4  2002/09/18 18:49:27  kholodov
  81. * Modified: class declaration and Action method to reflect
  82. * direct inheritance of CActiveObject from IEventListener
  83. *
  84. * Revision 1.3  2002/09/09 20:48:57  kholodov
  85. * Added: Additional trace output about object life cycle
  86. * Added: CStatement::Failed() method to check command status
  87. *
  88. * Revision 1.2  2002/05/16 22:11:12  kholodov
  89. * Improved: using minimum connections possible
  90. *
  91. * Revision 1.1  2002/01/30 14:51:23  kholodov
  92. * User DBAPI implementation, first commit
  93. *
  94. * Revision 1.1  2001/11/30 16:30:03  kholodov
  95. * Snapshot of the first draft of dbapi lib
  96. *
  97. *
  98. */
  99. #include <dbapi/dbapi.hpp>
  100. #include "active_obj.hpp"
  101. #include <corelib/ncbistre.hpp>
  102. #include "dbexception.hpp"
  103. BEGIN_NCBI_SCOPE
  104. class CStatement : public CActiveObject, 
  105.                    public virtual IStatement
  106. {
  107. public:
  108.     CStatement(class CConnection* conn);
  109.     virtual ~CStatement();
  110.   
  111.     virtual IResultSet* GetResultSet();
  112.     virtual bool HasMoreResults();
  113.     virtual bool HasRows();
  114.     virtual bool Failed();
  115.     virtual int GetRowCount();
  116.   
  117.     
  118.     virtual void Execute(const string& sql);
  119.     virtual void ExecuteUpdate(const string& sql);
  120.     virtual IResultSet* ExecuteQuery(const string& sql);
  121.     virtual void ExecuteLast();
  122.     virtual void PurgeResults();
  123.     virtual void Cancel();
  124.     virtual void Close();
  125.     virtual void SetParam(const CVariant& v, 
  126.                           const string& name);
  127.     virtual void ClearParamList();
  128.     virtual IConnection* GetParentConn();
  129.     CConnection* GetConnection() {
  130.         return m_conn;
  131.     }
  132.     CDB_Result* GetCDB_Result();
  133.     CDB_LangCmd* GetLangCmd();
  134.     
  135.     // Interface IEventListener implementation
  136.     virtual void Action(const CDbapiEvent& e);
  137. protected:    
  138.     void SetBaseCmd(I_BaseCmd *cmd) { m_cmd = cmd; }
  139.     I_BaseCmd* GetBaseCmd() { return m_cmd; }
  140.     void CacheResultSet(CDB_Result *rs);
  141.     void SetFailed(bool f) {
  142.         m_failed = f;
  143.     }
  144.     void FreeResources();
  145. private:
  146.     class CConnection* m_conn;
  147.     I_BaseCmd *m_cmd;
  148.     //CDB_Result *m_rs;
  149.     int m_rowCount;
  150.     bool m_failed;
  151.     typedef map<string, CVariant*> ParamList;
  152.     ParamList m_params;
  153.     //typedef set<CDB_Result*> RequestedRsList;
  154.     //RequestedRsList m_requestedRsList;
  155.     class CResultSet *m_irs;
  156. };
  157. END_NCBI_SCOPE
  158. //====================================================================
  159. #endif // _STMT_IMPL_HPP_