StmtInfo.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 "StmtInfo.hpp"
  14. const char*
  15. StmtInfo::getDesc() const
  16. {
  17.     switch (m_name) {
  18.     case Stmt_name_select:
  19. return "select";
  20.     case Stmt_name_insert:
  21. return "insert";
  22.     case Stmt_name_update:
  23. return "update";
  24.     case Stmt_name_delete:
  25. return "delete";
  26.     case Stmt_name_create_table:
  27. return "create table";
  28.     case Stmt_name_create_index:
  29. return "create index";
  30.     case Stmt_name_drop_table:
  31. return "drop table";
  32.     case Stmt_name_drop_index:
  33. return "drop index";
  34.     default:
  35. ctx_assert(false);
  36. break;
  37.     }
  38.     return "";
  39. }
  40. StmtType
  41. StmtInfo::getType() const
  42. {
  43.     StmtType type = Stmt_type_undef;
  44.     switch (m_name) {
  45.     case Stmt_name_select: // query
  46. type = Stmt_type_query;
  47. break;
  48.     case Stmt_name_insert: // DML
  49.     case Stmt_name_update:
  50.     case Stmt_name_delete:
  51. type = Stmt_type_DML;
  52. break;
  53.     case Stmt_name_create_table: // DDL
  54.     case Stmt_name_create_index:
  55.     case Stmt_name_drop_table:
  56.     case Stmt_name_drop_index:
  57. type = Stmt_type_DDL;
  58. break;
  59.     default:
  60. ctx_assert(false);
  61. break;
  62.     }
  63.     return type;
  64. }
  65. void
  66. StmtInfo::free(Ctx& ctx)
  67. {
  68.     m_name = Stmt_name_undef;
  69.     m_function = "";
  70.     m_functionCode = SQL_DIAG_UNKNOWN_STATEMENT;
  71. }