StmtInfo.hpp
上传用户: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. #ifndef ODBC_COMMON_StmtInfo_hpp
  14. #define ODBC_COMMON_StmtInfo_hpp
  15. #include <common/common.hpp>
  16. // general type (determined by SQL command)
  17. enum StmtType {
  18.     Stmt_type_undef = 0,
  19.     Stmt_type_query, // select
  20.     Stmt_type_DML, // insert, update, delete
  21.     Stmt_type_DDL, // create, drop, alter table
  22.     Stmt_type_info // virtual query
  23. };
  24. // specific SQL command (first 1-2 words)
  25. enum StmtName {
  26.     Stmt_name_undef = 0,
  27.     Stmt_name_select,
  28.     Stmt_name_insert,
  29.     Stmt_name_update,
  30.     Stmt_name_delete,
  31.     Stmt_name_create_table,
  32.     Stmt_name_create_index,
  33.     Stmt_name_drop_table,
  34.     Stmt_name_drop_index
  35. };
  36. /**
  37.  * @class StmtInfo
  38.  * @brief Statement Info
  39.  * 
  40.  * Statement info.  This is a separate class which could
  41.  * be used in cases not tied to statement execution.
  42.  */
  43. class StmtInfo {
  44. public:
  45.     StmtInfo();
  46.     void setName(StmtName name);
  47.     StmtName getName() const;
  48.     const char* getDesc() const;
  49.     StmtType getType() const;
  50.     void free(Ctx& ctx);
  51. private:
  52.     friend class StmtArea;
  53.     StmtName m_name;
  54.     const char* m_function; // not allocated
  55.     SQLINTEGER m_functionCode;
  56. };
  57. inline
  58. StmtInfo::StmtInfo() :
  59.     m_name(Stmt_name_undef),
  60.     m_function(""),
  61.     m_functionCode(SQL_DIAG_UNKNOWN_STATEMENT)
  62. {
  63. }
  64. inline void
  65. StmtInfo::setName(StmtName name)
  66. {
  67.     m_name = name;
  68. }
  69. inline StmtName
  70. StmtInfo::getName() const
  71. {
  72.     return m_name;
  73. }
  74. #endif