ConnArea.hpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #ifndef ODBC_COMMON_ConnArea_hpp
  14. #define ODBC_COMMON_ConnArea_hpp
  15. #include <common/common.hpp>
  16. class Ctx;
  17. class Ndb;
  18. class NdbSchemaCon;
  19. class NdbConnection;
  20. class DictCatalog;
  21. class DictSchema;
  22. /**
  23.  * @class ConnArea
  24.  * @brief Public part of connection handle
  25.  */
  26. class ConnArea {
  27. public:
  28.     // state between ODBC function calls
  29.     enum State {
  30. Free = 1, // not in use, no Ndb object
  31. Connected = 2, // has Ndb object but no Ndb connection
  32. Transacting = 3 // has Ndb connection
  33.     };
  34.     State getState() const;
  35.     DictCatalog& dictCatalog() const;
  36.     DictSchema& dictSchema() const;
  37.     Ndb* ndbObject() const;
  38.     NdbSchemaCon* ndbSchemaCon() const;
  39.     NdbConnection* ndbConnection() const;
  40.     // called from StmtArea
  41.     bool useSchemaCon(Ctx& ctx, bool use);
  42.     bool useConnection(Ctx& ctx, bool use);
  43.     // these just get and set the flag - no semantics
  44.     bool autocommit() const;
  45.     void autocommit(bool flag);
  46.     bool uncommitted() const;
  47.     void uncommitted(bool flag);
  48. protected:
  49.     ConnArea();
  50.     ~ConnArea();
  51.     State m_state;
  52.     DictCatalog* m_catalog;
  53.     DictSchema* m_schema;
  54.     Ndb* m_ndbObject;
  55.     NdbSchemaCon* m_ndbSchemaCon;
  56.     NdbConnection* m_ndbConnection;
  57.     unsigned m_useSchemaCon;
  58.     unsigned m_useConnection;
  59.     bool m_autocommit;
  60.     bool m_uncommitted; // has uncommitted changes
  61. };
  62. inline ConnArea::State
  63. ConnArea::getState() const
  64. {
  65.     return m_state;
  66. }
  67. inline DictCatalog&
  68. ConnArea::dictCatalog() const
  69. {
  70.     ctx_assert(m_catalog != 0);
  71.     return *m_catalog;
  72. }
  73. inline DictSchema&
  74. ConnArea::dictSchema() const
  75. {
  76.     ctx_assert(m_schema != 0);
  77.     return *m_schema;
  78. }
  79. inline Ndb*
  80. ConnArea::ndbObject() const
  81. {
  82.     ctx_assert(m_ndbObject != 0);
  83.     return m_ndbObject;
  84. }
  85. inline NdbSchemaCon*
  86. ConnArea::ndbSchemaCon() const
  87. {
  88.     ctx_assert(m_ndbSchemaCon != 0);
  89.     return m_ndbSchemaCon;
  90. }
  91. inline NdbConnection*
  92. ConnArea::ndbConnection() const
  93. {
  94.     ctx_assert(m_ndbConnection != 0);
  95.     return m_ndbConnection;
  96. }
  97. inline bool
  98. ConnArea::autocommit() const
  99. {
  100.     return m_autocommit;
  101. }
  102. inline void
  103. ConnArea::autocommit(bool flag)
  104. {
  105.     m_autocommit = flag;
  106. }
  107. inline bool
  108. ConnArea::uncommitted() const
  109. {
  110.     return m_uncommitted;
  111. }
  112. inline void
  113. ConnArea::uncommitted(bool flag)
  114. {
  115.     m_uncommitted = flag;
  116. }
  117. #endif