DictSys.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_DICTIONARY_DictSys_hpp
  14. #define ODBC_DICTIONARY_DictSys_hpp
  15. #include <common/common.hpp>
  16. #include <common/DataType.hpp>
  17. class Ctx;
  18. class DictSchema;
  19. class DictTable;
  20. class SqlType;
  21. /**
  22.  * @class DictSys
  23.  * @brief Built-in tables (replaced later by real systables)
  24.  */
  25. class DictSys {
  26. public:
  27.     enum Id {
  28. Undef = 0,
  29. OdbcTypeinfo = 1,
  30. OdbcTables = 2,
  31. OdbcColumns = 3,
  32. OdbcPrimarykeys = 4,
  33. Dual = 5
  34.     };
  35.     struct Column {
  36. Column(unsigned position, const char* name, bool key, const SqlType& sqlType);
  37. const unsigned m_position;
  38. const char* const m_name;
  39. const bool m_key;
  40. const SqlType m_sqlType;
  41.     };
  42.     struct Table {
  43. Table(Id id, const char* name, const Column* columnList, unsigned columnCount);
  44. const Id m_id;
  45. const char* m_name;
  46. const Column* const m_columnList;
  47. const unsigned m_columnCount;
  48.     };
  49.     static DictTable* loadTable(Ctx& ctx, DictSchema* schema, const BaseString& name);
  50. };
  51. inline
  52. DictSys::Column::Column(unsigned position, const char* name, bool key, const SqlType& sqlType) :
  53.     m_position(position),
  54.     m_name(name),
  55.     m_key(key),
  56.     m_sqlType(sqlType)
  57. {
  58. }
  59. inline
  60. DictSys::Table::Table(DictSys::Id id, const char* name, const Column* columnList, unsigned columnCount) :
  61.     m_id(id),
  62.     m_name(name),
  63.     m_columnList(columnList),
  64.     m_columnCount(columnCount)
  65. {
  66. }
  67. #endif