errmsg.h
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. /* Error messages for mysql clients */
  4. /* error messages for the demon is in share/language/errmsg.sys */
  5. void init_client_errs(void);
  6. extern char *client_errors[]; /* Error messages */
  7. #define CR_MIN_ERROR 2000 /* For easier client code */
  8. #define CR_MAX_ERROR 2999
  9. #define ER(X) client_errors[(X)-CR_MIN_ERROR]
  10. #define CLIENT_ERRMAP  2 /* Errormap used by my_error() */
  11. #define CR_UNKNOWN_ERROR 2000
  12. #define CR_SOCKET_CREATE_ERROR 2001
  13. #define CR_CONNECTION_ERROR 2002
  14. #define CR_CONN_HOST_ERROR 2003
  15. #define CR_IPSOCK_ERROR 2004
  16. #define CR_UNKNOWN_HOST 2005
  17. #define CR_SERVER_GONE_ERROR 2006
  18. #define CR_VERSION_ERROR 2007
  19. #define CR_OUT_OF_MEMORY 2008
  20. #define CR_WRONG_HOST_INFO 2009
  21. #define CR_LOCALHOST_CONNECTION 2010
  22. #define CR_TCP_CONNECTION 2011
  23. #define CR_SERVER_HANDSHAKE_ERR 2012
  24. #define CR_SERVER_LOST 2013
  25. #define CR_COMMANDS_OUT_OF_SYNC 2014