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

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. #include "driver.hpp"
  14. #if ODBCVER >= 0x0300
  15. SQLRETURN SQL_API
  16. SQLAllocHandle(
  17.     SQLSMALLINT HandleType,
  18.     SQLHANDLE InputHandle,
  19.     SQLHANDLE* OutputHandle)
  20. {
  21.     driver_enter(SQL_API_SQLALLOCHANDLE);
  22.     const char* const sqlFunction = "SQLAllocHandle";
  23.     HandleRoot* const pRoot = HandleRoot::instance();
  24.     SQLSMALLINT parentType = pRoot->findParentType(HandleType);
  25.     if (parentType == -1) {
  26. driver_exit(SQL_API_SQLALLOCHANDLE);
  27. return SQL_INVALID_HANDLE;
  28.     }
  29.     HandleBase* pParent = pRoot->findBase(parentType, InputHandle);
  30.     if (pParent == 0) {
  31. driver_exit(SQL_API_SQLALLOCHANDLE);
  32. return SQL_INVALID_HANDLE;
  33.     }
  34.     Ctx& ctx = *new Ctx;
  35.     ctx.logSqlEnter(sqlFunction);
  36.     HandleBase* pChild = 0;
  37.     HandleBase** ppChild = 0;
  38.     if (OutputHandle != 0)
  39. ppChild = &pChild;
  40.     try {
  41. pParent->sqlAllocHandle(ctx, HandleType, ppChild);
  42.     } catch (CtxAssert& ctxAssert) {
  43. ctx.handleEx(ctxAssert);
  44.     }
  45.     if (OutputHandle != 0)
  46. *OutputHandle = static_cast<SQLHANDLE>(pChild);
  47.     if (pRoot == pParent)
  48. pRoot->lockHandle();
  49.     pParent->saveCtx(ctx);
  50.     ctx.logSqlExit();
  51.     SQLRETURN ret = ctx.getCode();
  52.     if (pRoot == pParent)
  53. pRoot->unlockHandle();
  54.     driver_exit(SQL_API_SQLALLOCHANDLE);
  55.     return ret;
  56. }
  57. #endif // ODBCVER >= 0x0300