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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: cursor_impl.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:18:27  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef _CURSOR_IMPL_HPP_
  10. #define _CURSOR_IMPL_HPP_
  11. /* $Id: cursor_impl.hpp,v 1000.2 2004/06/01 19:18:27 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: cursor_impl.hpp,v 1000.2 2004/06/01 19:18:27 gouriano Exp $
  37. *
  38. * Author:  Michael Kholodov
  39. *   
  40. * File Description:  Array template class
  41. *
  42. *
  43. * $Log: cursor_impl.hpp,v $
  44. * Revision 1000.2  2004/06/01 19:18:27  gouriano
  45. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  46. *
  47. * Revision 1.8  2004/04/22 14:22:25  kholodov
  48. * Added: Cancel()
  49. *
  50. * Revision 1.7  2004/04/08 15:56:58  kholodov
  51. * Multiple bug fixes and optimizations
  52. *
  53. * Revision 1.6  2002/10/21 20:38:08  kholodov
  54. * Added: GetParentConn() method to get the parent connection from IStatement,
  55. * ICallableStatement and ICursor objects.
  56. * Fixed: Minor fixes
  57. *
  58. * Revision 1.5  2002/09/18 18:49:27  kholodov
  59. * Modified: class declaration and Action method to reflect
  60. * direct inheritance of CActiveObject from IEventListener
  61. *
  62. * Revision 1.4  2002/08/26 15:35:56  kholodov
  63. * Added possibility to disable transaction log
  64. * while updating BLOBs
  65. *
  66. * Revision 1.3  2002/07/08 16:06:37  kholodov
  67. * Added GetBlobOStream() implementation
  68. *
  69. * Revision 1.2  2002/02/08 21:29:55  kholodov
  70. * SetDataBase() restored, connection cloning algorithm changed
  71. *
  72. * Revision 1.1  2002/01/30 14:51:22  kholodov
  73. * User DBAPI implementation, first commit
  74. *
  75. *
  76. *
  77. */
  78. #include <dbapi/dbapi.hpp>
  79. #include "active_obj.hpp"
  80. #include <corelib/ncbistre.hpp>
  81. #include "dbexception.hpp"
  82. #include "blobstream.hpp"
  83. #include <map>
  84. BEGIN_NCBI_SCOPE
  85. class CCursor : public CActiveObject, 
  86.                 public ICursor
  87. {
  88. public:
  89.     CCursor(const string& name,
  90.             const string& sql,
  91.             int nofArgs,
  92.             int batchSize,
  93.             CConnection* conn);
  94.     virtual ~CCursor();
  95.     virtual void SetParam(const CVariant& v, 
  96.                           const string& name);
  97.     virtual IResultSet* Open();
  98.     ostream& GetBlobOStream(unsigned int col,
  99.                             size_t blob_size, 
  100.                             EAllowLog log_it,
  101.                             size_t buf_size);
  102.     virtual void Update(const string& table, const string& updateSql);
  103.     virtual void Delete(const string& table);
  104.     virtual void Cancel();
  105.     virtual void Close();
  106.     virtual IConnection* GetParentConn();
  107.     // Interface IEventListener implementation
  108.     virtual void Action(const CDbapiEvent& e);
  109. protected:
  110.     CDB_CursorCmd* GetCursorCmd() { return m_cmd; }
  111.     void FreeResources();
  112. private:
  113.     int m_nofArgs;
  114.     typedef map<string, CVariant*> Parameters;
  115.     Parameters m_params;
  116.     CDB_CursorCmd* m_cmd;
  117.     CConnection* m_conn;
  118.     ostream *m_ostr;
  119.   
  120. };
  121. //====================================================================
  122. END_NCBI_SCOPE
  123. #endif // _CURSOR_IMPL_HPP_