Code_dml.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_CODEGEN_Code_dml_hpp
  14. #define ODBC_CODEGEN_Code_dml_hpp
  15. #include <common/common.hpp>
  16. #include <common/ResultArea.hpp>
  17. #include "Code_stmt.hpp"
  18. /**
  19.  * @class Plan_dml
  20.  * @brief Base class for DML statements in PlanTree
  21.  */
  22. class Plan_dml : public Plan_stmt {
  23. public:
  24.     Plan_dml(Plan_root* root);
  25.     virtual ~Plan_dml() = 0;
  26. };
  27. inline
  28. Plan_dml::Plan_dml(Plan_root* root) :
  29.     Plan_stmt(root)
  30. {
  31. }
  32. /**
  33.  * @class Exec_dml
  34.  * @brief Base class for DML statements in ExecTree
  35.  */
  36. class Exec_dml : public Exec_stmt {
  37. public:
  38.     class Code : public Exec_stmt::Code {
  39.     public:
  40. virtual ~Code() = 0;
  41.     };
  42.     class Data : public Exec_stmt::Data, public ResultArea {
  43.     public:
  44. virtual ~Data() = 0;
  45.     };
  46.     Exec_dml(Exec_root* root);
  47.     virtual ~Exec_dml() = 0;
  48.     void execute(Ctx& ctx, Ctl& ctl);
  49. protected:
  50.     virtual void execImpl(Ctx& ctx, Ctl& ctl) = 0;
  51. };
  52. inline
  53. Exec_dml::Exec_dml(Exec_root* root) :
  54.     Exec_stmt(root)
  55. {
  56. }
  57. #endif