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

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_HANDLES_HandleDbc_hpp
  14. #define ODBC_HANDLES_HandleDbc_hpp
  15. #include <list>
  16. #include <common/common.hpp>
  17. #include <common/ConnArea.hpp>
  18. #include "HandleBase.hpp"
  19. class HandleRoot;
  20. class HandleEnv;
  21. class HandleStmt;
  22. class HandleDesc;
  23. /**
  24.  * @class HandleDbc
  25.  * @brief Connection handle (SQLHDBC).
  26.  */
  27. class HandleDbc : public HandleBase, public ConnArea {
  28. public:
  29.     HandleDbc(HandleEnv* pEnv);
  30.     ~HandleDbc();
  31.     void ctor(Ctx& ctx);
  32.     void dtor(Ctx& ctx);
  33.     HandleEnv* getEnv();
  34.     HandleBase* getParent();
  35.     HandleRoot* getRoot();
  36.     OdbcHandle odbcHandle();
  37.     // allocate and free handles
  38.     void sqlAllocStmt(Ctx& ctx, HandleStmt** ppStmt);
  39.     void sqlAllocDesc(Ctx& ctx, HandleDesc** ppDesc);
  40.     void sqlAllocHandle(Ctx& ctx, SQLSMALLINT childType, HandleBase** ppChild);
  41.     void sqlFreeStmt(Ctx& ctx, HandleStmt* pStmt, SQLUSMALLINT iOption);
  42.     void sqlFreeDesc(Ctx& ctx, HandleDesc* pDesc);
  43.     void sqlFreeHandle(Ctx& ctx, SQLSMALLINT childType, HandleBase* pChild);
  44.     // attributes and info functions
  45.     void sqlSetConnectAttr(Ctx& ctx, SQLINTEGER attribute, SQLPOINTER value, SQLINTEGER stringLength);
  46.     void sqlGetConnectAttr(Ctx& ctx, SQLINTEGER attribute, SQLPOINTER value, SQLINTEGER bufferLength, SQLINTEGER* stringLength);
  47.     void sqlSetConnectOption(Ctx& ctx, SQLUSMALLINT option, SQLUINTEGER value); // odbc2.0
  48.     void sqlGetConnectOption(Ctx& ctx, SQLUSMALLINT option, SQLPOINTER value); // odbc2.0
  49.     void sqlGetFunctions(Ctx& ctx, SQLUSMALLINT functionId, SQLUSMALLINT* supported);
  50.     void sqlGetInfo(Ctx& ctx, SQLUSMALLINT infoType, SQLPOINTER infoValue, SQLSMALLINT bufferLength, SQLSMALLINT* stringLength);
  51.     int getOdbcVersion(Ctx& ctx);
  52.     // connect and transactions
  53.     void sqlConnect(Ctx& ctx, SQLCHAR* serverName, SQLSMALLINT nameLength1, SQLCHAR* userName, SQLSMALLINT nameLength2, SQLCHAR* authentication, SQLSMALLINT nameLength3);
  54.     void sqlDriverConnect(Ctx& ctx, SQLHWND hwnd, SQLCHAR* szConnStrIn, SQLSMALLINT cbConnStrIn, SQLCHAR* szConnStrOut, SQLSMALLINT cbConnStrOutMax, SQLSMALLINT* pcbConnStrOut, SQLUSMALLINT fDriverCompletion);
  55.     void sqlDisconnect(Ctx& ctx);
  56.     void sqlEndTran(Ctx& ctx, SQLSMALLINT completionType);
  57.     void sqlTransact(Ctx& ctx, SQLUSMALLINT completionType); // odbc2.0
  58. private:
  59.     HandleEnv* const m_env;
  60.     typedef std::list<HandleStmt*> ListStmt;
  61.     ListStmt m_listStmt;
  62.     typedef std::list<HandleDesc*> ListDesc;
  63.     ListDesc m_listDesc;
  64.     static AttrSpec m_attrSpec[];
  65.     AttrArea m_attrArea;
  66.     struct FuncTab {
  67. SQLUSMALLINT m_functionId;
  68. int m_supported;
  69.     };
  70.     static FuncTab m_funcTab[];
  71.     struct InfoTab {
  72. SQLUSMALLINT m_id;
  73. enum { Char, YesNo, Short, Long, Bitmask, End } m_format;
  74. SQLUINTEGER m_int;
  75. const char* m_str;
  76.     };
  77.     static InfoTab m_infoTab[];
  78. };
  79. inline HandleEnv*
  80. HandleDbc::getEnv()
  81. {
  82.     return m_env;
  83. }
  84. inline HandleBase*
  85. HandleDbc::getParent()
  86. {
  87.     return (HandleBase*)getEnv();
  88. }
  89. inline HandleRoot*
  90. HandleDbc::getRoot()
  91. {
  92.     return getParent()->getRoot();
  93. }
  94. inline OdbcHandle
  95. HandleDbc::odbcHandle()
  96. {
  97.     return Odbc_handle_dbc;
  98. }
  99. #endif