errmsg.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /* Error messages for MySQL clients */
  18. /* error messages for the demon is in share/language/errmsg.sys */
  19. #include <global.h>
  20. #include <my_sys.h>
  21. #include "errmsg.h"
  22. #ifdef GERMAN
  23. const char *client_errors[]=
  24. {
  25.   "Unbekannter MySQL Fehler",
  26.   "Kann UNIX-Socket nicht anlegen (%d)",
  27.   "Keine Verbindung zu lokalem MySQL Server, socket: '%-.64s' (%d)",
  28.   "Keine Verbindung zu MySQL Server auf %-.64s (%d)",
  29.   "Kann TCP/IP-Socket nicht anlegen (%d)",
  30.   "Unbekannter MySQL Server Host (%-.64s) (%d)",
  31.   "MySQL Server nicht vorhanden",
  32.   "Protokolle ungleich. Server Version = % d Client Version = %d",
  33.   "MySQL client got out of memory",
  34.   "Wrong host info",
  35.   "Localhost via UNIX socket",
  36.   "%-.64s via TCP/IP",
  37.   "Error in server handshake",
  38.   "Lost connection to MySQL server during query",
  39.   "Commands out of sync; You can't run this command now",
  40.   "Verbindung ueber Named Pipe; Host: %-.64s",
  41.   "Kann nicht auf Named Pipe warten. Host: %-.64s  pipe: %-.32s (%lu)",
  42.   "Kann Named Pipe nicht oeffnen. Host: %-.64s  pipe: %-.32s (%lu)",
  43.   "Kann den Status der Named Pipe nicht setzen.  Host: %-.64s  pipe: %-.32s (%lu)",
  44.   "Can't initialize character set %-.64s (path: %-.64s)",
  45.   "Got packet bigger than 'max_allowed_packet'"
  46. };
  47. #else /* ENGLISH */
  48. const char *client_errors[]=
  49. {
  50.   "Unknown MySQL error",
  51.   "Can't create UNIX socket (%d)",
  52.   "Can't connect to local MySQL server through socket '%-.64s' (%d)",
  53.   "Can't connect to MySQL server on '%-.64s' (%d)",
  54.   "Can't create TCP/IP socket (%d)",
  55.   "Unknown MySQL Server Host '%-.64s' (%d)",
  56.   "MySQL server has gone away",
  57.   "Protocol mismatch. Server Version = %d Client Version = %d",
  58.   "MySQL client run out of memory",
  59.   "Wrong host info",
  60.   "Localhost via UNIX socket",
  61.   "%-.64s via TCP/IP",
  62.   "Error in server handshake",
  63.   "Lost connection to MySQL server during query",
  64.   "Commands out of sync;  You can't run this command now",
  65.   "%-.64s via named pipe",
  66.   "Can't wait for named pipe to host: %-.64s  pipe: %-.32s (%lu)",
  67.   "Can't open named pipe to host: %-.64s  pipe: %-.32s (%lu)",
  68.   "Can't set state of named pipe to host: %-.64s  pipe: %-.32s (%lu)",
  69.   "Can't initialize character set %-.64s (path: %-.64s)",
  70.   "Got packet bigger than 'max_allowed_packet'"
  71. };
  72. #endif
  73. void init_client_errs(void)
  74. {
  75.   my_errmsg[CLIENT_ERRMAP] = &client_errors[0];
  76. }