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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: cstmt_impl.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:18:21  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef _CSTMT_IMPL_HPP_
  10. #define _CSTMT_IMPL_HPP_
  11. /* $Id: cstmt_impl.hpp,v 1000.2 2004/06/01 19:18:21 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: cstmt_impl.hpp,v 1000.2 2004/06/01 19:18:21 gouriano Exp $
  37. *
  38. * Author:  Michael Kholodov
  39. *   
  40. * File Description:  Callable statement implementation
  41. *
  42. *
  43. * $Log: cstmt_impl.hpp,v $
  44. * Revision 1000.2  2004/06/01 19:18:21  gouriano
  45. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  46. *
  47. * Revision 1.7  2004/04/26 14:16:56  kholodov
  48. * Modified: recreate the command objects each time the Get...() is called
  49. *
  50. * Revision 1.6  2004/04/08 15:56:58  kholodov
  51. * Multiple bug fixes and optimizations
  52. *
  53. * Revision 1.5  2002/10/03 18:50:00  kholodov
  54. * Added: additional TRACE diagnostics about object deletion
  55. * Fixed: setting parameters in IStatement object is fully supported
  56. * Added: IStatement::ExecuteLast() to execute the last statement with
  57. * different parameters if any
  58. *
  59. * Revision 1.4  2002/04/05 19:33:08  kholodov
  60. * Added: ExecuteUpdate() to skip all resultsets returned (if any)
  61. *
  62. * Revision 1.3  2002/02/08 21:29:55  kholodov
  63. * SetDataBase() restored, connection cloning algorithm changed
  64. *
  65. * Revision 1.2  2002/02/05 17:24:02  kholodov
  66. * Put into NCBI scope
  67. *
  68. * Revision 1.1  2002/01/30 14:51:22  kholodov
  69. * User DBAPI implementation, first commit
  70. *
  71. *
  72. *
  73. */
  74. #include "stmt_impl.hpp"
  75. #include <map>
  76. BEGIN_NCBI_SCOPE
  77. class CCallableStatement : public CStatement,
  78.                            public ICallableStatement
  79. {
  80. public:
  81.     CCallableStatement(const string& proc,
  82.                        int nofArgs,
  83.                        CConnection* conn);
  84.     virtual ~CCallableStatement();
  85.     virtual bool HasMoreResults();
  86.     virtual int GetReturnStatus();
  87.     virtual void SetParam(const CVariant& v, 
  88.                           const string& name);
  89.     virtual void SetOutputParam(const CVariant& v, const string& name);
  90.     virtual void Execute();
  91.     virtual void ExecuteUpdate();
  92.     virtual void Close();
  93. protected:
  94.     CDB_RPCCmd* GetRpcCmd();
  95.     virtual void Execute(const string& /*sql*/) {}
  96.     virtual void ExecuteUpdate(const string& /*sql*/) {}
  97.     virtual IResultSet* ExecuteQuery(const string& /*sql*/) { return 0; }
  98. private:
  99.     int m_status;
  100.     int m_nofParams;
  101.     //typedef map<string, CVariant> ParamList;
  102.     //ParamList m_paramList;
  103.   
  104. };
  105. //====================================================================
  106. END_NCBI_SCOPE
  107. #endif // _CSTMT_IMPL_HPP_