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

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. #ifndef _mysys_err_h
  14. #define _mysys_err_h
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. #define GLOB 0 /* Error maps */
  19. #define GLOBERRS 29 /* Max number of error messages in map's */
  20. #define EE(X) globerrs[ X ] /* Defines to add error to right map */
  21. extern const char * NEAR globerrs[]; /* my_error_messages is here */
  22. /* Error message numbers in global map */
  23. #define EE_FILENOTFOUND 0
  24. #define EE_CANTCREATEFILE 1
  25. #define EE_READ 2
  26. #define EE_WRITE 3
  27. #define EE_BADCLOSE 4
  28. #define EE_OUTOFMEMORY 5
  29. #define EE_DELETE 6
  30. #define EE_LINK 7
  31. #define EE_EOFERR 9
  32. #define EE_CANTLOCK 10
  33. #define EE_CANTUNLOCK 11
  34. #define EE_DIR 12
  35. #define EE_STAT 13
  36. #define EE_CANT_CHSIZE 14
  37. #define EE_CANT_OPEN_STREAM 15
  38. #define EE_GETWD 16
  39. #define EE_SETWD 17
  40. #define EE_LINK_WARNING 18
  41. #define EE_OPEN_WARNING 19
  42. #define EE_DISK_FULL 20
  43. #define EE_CANT_MKDIR 21
  44. #define EE_UNKNOWN_CHARSET 22
  45. #define EE_OUT_OF_FILERESOURCES 23
  46. #define EE_CANT_READLINK 24
  47. #define EE_CANT_SYMLINK 25
  48. #define EE_REALPATH 26
  49. #define EE_SYNC 27
  50. #define EE_UNKNOWN_COLLATION 28
  51.   /* exit codes for all MySQL programs */
  52. #define EXIT_UNSPECIFIED_ERROR 1
  53. #define EXIT_UNKNOWN_OPTION 2
  54. #define EXIT_AMBIGUOUS_OPTION 3
  55. #define EXIT_NO_ARGUMENT_ALLOWED 4
  56. #define EXIT_ARGUMENT_REQUIRED 5
  57. #define EXIT_VAR_PREFIX_NOT_UNIQUE 6
  58. #define EXIT_UNKNOWN_VARIABLE 7
  59. #define EXIT_OUT_OF_MEMORY 8
  60. #define EXIT_UNKNOWN_SUFFIX 9
  61. #define EXIT_NO_PTR_TO_VARIABLE 10
  62. #define EXIT_CANNOT_CONNECT_TO_SERVICE 11
  63. #define EXIT_OPTION_DISABLED            12
  64. #ifdef __cplusplus
  65. }
  66. #endif
  67. #endif