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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 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. /* Error messages for MySQL clients */
  14. /* (Error messages for the daemon are in share/language/errmsg.sys) */
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. void init_client_errs(void);
  19. extern const char *client_errors[]; /* Error messages */
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23. #define CR_MIN_ERROR 2000 /* For easier client code */
  24. #define CR_MAX_ERROR 2999
  25. #if defined(OS2) && defined(MYSQL_SERVER)
  26. #define CER(X) client_errors[(X)-CR_MIN_ERROR]
  27. #elif !defined(ER)
  28. #define ER(X) client_errors[(X)-CR_MIN_ERROR]
  29. #endif
  30. #define CLIENT_ERRMAP 2 /* Errormap used by my_error() */
  31. #define CR_UNKNOWN_ERROR 2000
  32. #define CR_SOCKET_CREATE_ERROR 2001
  33. #define CR_CONNECTION_ERROR 2002
  34. #define CR_CONN_HOST_ERROR 2003
  35. #define CR_IPSOCK_ERROR 2004
  36. #define CR_UNKNOWN_HOST 2005
  37. #define CR_SERVER_GONE_ERROR 2006
  38. #define CR_VERSION_ERROR 2007
  39. #define CR_OUT_OF_MEMORY 2008
  40. #define CR_WRONG_HOST_INFO 2009
  41. #define CR_LOCALHOST_CONNECTION 2010
  42. #define CR_TCP_CONNECTION 2011
  43. #define CR_SERVER_HANDSHAKE_ERR 2012
  44. #define CR_SERVER_LOST 2013
  45. #define CR_COMMANDS_OUT_OF_SYNC 2014
  46. #define CR_NAMEDPIPE_CONNECTION 2015
  47. #define CR_NAMEDPIPEWAIT_ERROR  2016
  48. #define CR_NAMEDPIPEOPEN_ERROR  2017
  49. #define CR_NAMEDPIPESETSTATE_ERROR 2018
  50. #define CR_CANT_READ_CHARSET 2019
  51. #define CR_NET_PACKET_TOO_LARGE 2020
  52. #define CR_EMBEDDED_CONNECTION 2021
  53. #define CR_PROBE_SLAVE_STATUS   2022
  54. #define CR_PROBE_SLAVE_HOSTS    2023
  55. #define CR_PROBE_SLAVE_CONNECT  2024
  56. #define CR_PROBE_MASTER_CONNECT 2025
  57. #define CR_SSL_CONNECTION_ERROR 2026
  58. #define CR_MALFORMED_PACKET     2027
  59. #define CR_WRONG_LICENSE 2028
  60. /* new 4.1 error codes */
  61. #define CR_NULL_POINTER 2029
  62. #define CR_NO_PREPARE_STMT 2030
  63. #define CR_PARAMS_NOT_BOUND 2031
  64. #define CR_DATA_TRUNCATED 2032
  65. #define CR_NO_PARAMETERS_EXISTS 2033
  66. #define CR_INVALID_PARAMETER_NO 2034
  67. #define CR_INVALID_BUFFER_USE 2035
  68. #define CR_UNSUPPORTED_PARAM_TYPE 2036
  69. #define CR_SHARED_MEMORY_CONNECTION             2037
  70. #define CR_SHARED_MEMORY_CONNECT_REQUEST_ERROR  2038
  71. #define CR_SHARED_MEMORY_CONNECT_ANSWER_ERROR   2039
  72. #define CR_SHARED_MEMORY_CONNECT_FILE_MAP_ERROR 2040
  73. #define CR_SHARED_MEMORY_CONNECT_MAP_ERROR      2041
  74. #define CR_SHARED_MEMORY_FILE_MAP_ERROR         2042
  75. #define CR_SHARED_MEMORY_MAP_ERROR              2043
  76. #define CR_SHARED_MEMORY_EVENT_ERROR      2044
  77. #define CR_SHARED_MEMORY_CONNECT_ABANDONED_ERROR 2045
  78. #define CR_SHARED_MEMORY_CONNECT_SET_ERROR      2046
  79. #define CR_CONN_UNKNOW_PROTOCOL  2047
  80. #define CR_INVALID_CONN_HANDLE 2048
  81. #define CR_SECURE_AUTH                          2049
  82. #define CR_FETCH_CANCELED                       2050
  83. #define CR_NO_DATA                              2051
  84. #define CR_NO_STMT_METADATA                     2052