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

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_SqlState_hpp
  14. #define ODBC_COMMON_SqlState_hpp
  15. #include <string.h>
  16. /**
  17.  * SQL states.
  18.  */
  19. class Sqlstate {
  20. public:
  21.     static const Sqlstate _00000; // no state
  22.     static const Sqlstate _01004; // data converted with truncation
  23.     static const Sqlstate _01S02; // option value changed
  24.     static const Sqlstate _07009; // invalid descriptor index
  25.     static const Sqlstate _08003; // connection not open
  26.     static const Sqlstate _21S01; // insert value list does not match column list
  27.     static const Sqlstate _22001; // string data, right truncation
  28.     static const Sqlstate _22002; // indicator variable required but not supplied
  29.     static const Sqlstate _22003; // data overflow
  30.     static const Sqlstate _22005; // data is not numeric-literal
  31.     static const Sqlstate _22008; // data value is not a valid timestamp
  32.     static const Sqlstate _22012; // division by zero
  33.     static const Sqlstate _24000; // invalid cursor state
  34.     static const Sqlstate _25000; // invalid transaction state
  35.     static const Sqlstate _42000; // syntax error or access violation
  36.     static const Sqlstate _42S02; // base table or view not found
  37.     static const Sqlstate _42S22; // column not found
  38.     static const Sqlstate _HY004; // invalid SQL data type
  39.     static const Sqlstate _HY009; // invalid use of null pointer
  40.     static const Sqlstate _HY010; // function sequence error
  41.     static const Sqlstate _HY011; // attribute cannot be set now
  42.     static const Sqlstate _HY012; // invalid transaction operation code
  43.     static const Sqlstate _HY014; // limit on number of handles exceeded
  44.     static const Sqlstate _HY019; // non-character and non-binary data sent in pieces
  45.     static const Sqlstate _HY024; // invalid attribute value
  46.     static const Sqlstate _HY090; // invalid string or buffer length
  47.     static const Sqlstate _HY091; // invalid descriptor field identifier
  48.     static const Sqlstate _HY092; // invalid attribute/option identifier
  49.     static const Sqlstate _HY095; // function type out of range
  50.     static const Sqlstate _HY096; // information type out of range
  51.     static const Sqlstate _HYC00; // optional feature not implemented
  52.     static const Sqlstate _HYT00; // timeout expired
  53.     static const Sqlstate _IM000; // implementation defined
  54.     static const Sqlstate _IM001; // driver does not support this function
  55.     static const Sqlstate _IM999; // fill in the right state please
  56.     // get the 5-char text string
  57.     const char* state() const;
  58.     // get code or "upgrade" existing code
  59.     SQLRETURN getCode(SQLRETURN code = SQL_SUCCESS) const;
  60. private:
  61.     Sqlstate(const char* state, const SQLRETURN code);
  62.     const char* const m_state;
  63.     const SQLRETURN m_code;
  64. };
  65. inline const char*
  66. Sqlstate::state() const
  67. {
  68.     return m_state;
  69. }
  70. inline
  71. Sqlstate::Sqlstate(const char* state, const SQLRETURN code) :
  72.     m_state(state),
  73.     m_code(code)
  74. {
  75. }
  76. #endif