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

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_HandleStmt_hpp
  14. #define ODBC_HANDLES_HandleStmt_hpp
  15. #include <common/common.hpp>
  16. #include <common/DescArea.hpp>
  17. #include <common/StmtArea.hpp>
  18. #include "HandleBase.hpp"
  19. class HandleDbc;
  20. class HandleDesc;
  21. /**
  22.  * @class HandleStmt
  23.  * @brief Statement handle (SQLHSTMT).
  24.  */
  25. class HandleStmt : public HandleBase, public StmtArea {
  26. public:
  27.     HandleStmt(HandleDbc* pDbc);
  28.     ~HandleStmt();
  29.     void ctor(Ctx& ctx);
  30.     void dtor(Ctx& ctx);
  31.     HandleDbc* getDbc();
  32.     HandleBase* getParent();
  33.     HandleRoot* getRoot();
  34.     OdbcHandle odbcHandle();
  35.     // descriptor handles
  36.     HandleDesc* getHandleDesc(Ctx& ctx, DescUsage u) const;
  37.     void setHandleDesc(Ctx& ctx, DescUsage u, SQLPOINTER handle);
  38.     // allocate and free handles (no valid case)
  39.     void sqlAllocHandle(Ctx& ctx, SQLSMALLINT childType, HandleBase** ppChild);
  40.     void sqlFreeHandle(Ctx& ctx, SQLSMALLINT childType, HandleBase* pChild);
  41.     // attributes and info
  42.     void sqlSetStmtAttr(Ctx& ctx, SQLINTEGER attribute, SQLPOINTER value, SQLINTEGER stringLength);
  43.     void sqlGetStmtAttr(Ctx& ctx, SQLINTEGER attribute, SQLPOINTER value, SQLINTEGER bufferLength, SQLINTEGER* stringLength);
  44.     void sqlSetStmtOption(Ctx& ctx, SQLUSMALLINT option, SQLUINTEGER value); // odbc2.0
  45.     void sqlGetStmtOption(Ctx& ctx, SQLUSMALLINT option, SQLPOINTER value); // odbc2.0
  46.     void sqlGetTypeInfo(Ctx& ctx, SQLSMALLINT dataType);
  47.     void sqlTables(Ctx& ctx, SQLCHAR* catalogName, SQLSMALLINT nameLength1, SQLCHAR* schemaName, SQLSMALLINT nameLength2, SQLCHAR* tableName, SQLSMALLINT nameLength3, SQLCHAR* tableType, SQLSMALLINT nameLength4);
  48.     void sqlColumns(Ctx& ctx, SQLCHAR* catalogName, SQLSMALLINT nameLength1, SQLCHAR* schemaName, SQLSMALLINT nameLength2, SQLCHAR* tableName, SQLSMALLINT nameLength3, SQLCHAR* columnName, SQLSMALLINT nameLength4);
  49.     void sqlPrimaryKeys(Ctx& ctx, SQLCHAR* szCatalogName, SQLSMALLINT cbCatalogName, SQLCHAR* szSchemaName, SQLSMALLINT cbSchemaName, SQLCHAR* szTableName, SQLSMALLINT cbTableName);
  50.     int getOdbcVersion(Ctx& ctx);
  51.     // prepare and execute
  52.     void sqlPrepare(Ctx& ctx, SQLCHAR* statementText, SQLINTEGER textLength);
  53.     void sqlExecute(Ctx& ctx);
  54.     void sqlExecDirect(Ctx& ctx, SQLCHAR* statementText, SQLINTEGER textLength);
  55.     void sqlFetch(Ctx& ctx);
  56.     void sqlRowCount(Ctx& ctx, SQLINTEGER* rowCount);
  57.     void sqlMoreResults(Ctx& ctx);
  58.     void sqlCancel(Ctx& ctx);
  59.     void sqlCloseCursor(Ctx& ctx);
  60.     void sqlGetCursorName(Ctx& ctx, SQLCHAR* cursorName, SQLSMALLINT bufferLength, SQLSMALLINT* nameLength);
  61.     void sqlSetCursorName(Ctx& ctx, SQLCHAR* cursorName, SQLSMALLINT nameLength);
  62.     // special data access
  63.     void sqlGetData(Ctx& ctx, SQLUSMALLINT columnNumber, SQLSMALLINT targetType, SQLPOINTER targetValue, SQLINTEGER bufferLength, SQLINTEGER* strlen_or_Ind);
  64.     void sqlParamData(Ctx& ctx, SQLPOINTER* value);
  65.     void sqlPutData(Ctx& ctx, SQLPOINTER data, SQLINTEGER strlen_or_Ind);
  66.     // describe statement
  67.     void sqlNumParams(Ctx& ctx, SQLSMALLINT* ParameterCountPtr);
  68.     void sqlDescribeParam(Ctx& ctx, SQLUSMALLINT ipar, SQLSMALLINT* pfSqlType, SQLUINTEGER* pcbParamDef, SQLSMALLINT* pibScale, SQLSMALLINT* pfNullable);
  69.     void sqlNumResultCols(Ctx& ctx, SQLSMALLINT* columnCount);
  70.     void sqlDescribeCol(Ctx& ctx, SQLUSMALLINT columnNumber, SQLCHAR* columnName, SQLSMALLINT bufferLength, SQLSMALLINT* nameLength, SQLSMALLINT* dataType, SQLUINTEGER* columnSize, SQLSMALLINT* decimalDigits, SQLSMALLINT* nullable);
  71.     void sqlColAttribute(Ctx& ctx, SQLUSMALLINT columnNumber, SQLUSMALLINT fieldIdentifier, SQLPOINTER characterAttribute, SQLSMALLINT bufferLength, SQLSMALLINT* stringLength, SQLPOINTER numericAttribute);
  72.     void sqlColAttributes(Ctx& ctx, SQLUSMALLINT icol, SQLUSMALLINT fdescType, SQLPOINTER rgbDesc, SQLSMALLINT cbDescMax, SQLSMALLINT* pcbDesc, SQLINTEGER* pfDesc); // odbc2.0
  73.     // descriptor manipulation
  74.     void sqlBindCol(Ctx& ctx, SQLUSMALLINT columnNumber, SQLSMALLINT targetType, SQLPOINTER targetValue, SQLINTEGER bufferLength, SQLINTEGER* strlen_or_Ind);
  75.     void sqlBindParameter(Ctx& ctx, SQLUSMALLINT ipar, SQLSMALLINT fParamType, SQLSMALLINT fCType, SQLSMALLINT fSqlType, SQLUINTEGER cbColDef, SQLSMALLINT ibScale, SQLPOINTER rgbValue, SQLINTEGER cbValueMax, SQLINTEGER* pcbValue);
  76.     void sqlBindParam(Ctx& ctx, SQLUSMALLINT parameterNumber, SQLSMALLINT valueType, SQLSMALLINT parameterType, SQLUINTEGER lengthPrecision, SQLSMALLINT parameterScale, SQLPOINTER parameterValue, SQLINTEGER* strLen_or_Ind);
  77.     void sqlSetParam(Ctx& ctx, SQLUSMALLINT parameterNumber, SQLSMALLINT valueType, SQLSMALLINT parameterType, SQLUINTEGER lengthPrecision, SQLSMALLINT parameterScale, SQLPOINTER parameterValue, SQLINTEGER* strLen_or_Ind);
  78. private:
  79.     HandleDbc* const m_dbc;
  80.     static AttrSpec m_attrSpec[];
  81.     AttrArea m_attrArea;
  82.     // descriptor handles (0-automatic 1-application)
  83.     HandleDesc* m_handleDesc[2][1+4];
  84. };
  85. inline HandleDbc*
  86. HandleStmt::getDbc()
  87. {
  88.     return m_dbc;
  89. }
  90. inline HandleBase*
  91. HandleStmt::getParent()
  92. {
  93.     return (HandleBase*)getDbc();
  94. }
  95. inline HandleRoot*
  96. HandleStmt::getRoot()
  97. {
  98.     return getParent()->getRoot();
  99. }
  100. inline OdbcHandle
  101. HandleStmt::odbcHandle()
  102. {
  103.     return Odbc_handle_stmt;
  104. }
  105. #endif