home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / sql / mini_client_errors.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  3KB  |  83 lines

  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.  
  18. /* Error messages for MySQL clients */
  19. /* error messages for the demon is in share/language/errmsg.sys */
  20.  
  21. #include <global.h>
  22. #include <my_sys.h>
  23. #include "errmsg.h"
  24.  
  25. #ifdef GERMAN
  26. const char *client_errors[]=
  27. {
  28.   "Unbekannter MySQL Fehler",
  29.   "Kann UNIX-Socket nicht anlegen (%d)",
  30.   "Keine Verbindung zu lokalem MySQL Server, socket: '%-.64s' (%d)",
  31.   "Keine Verbindung zu MySQL Server auf %-.64s (%d)",
  32.   "Kann TCP/IP-Socket nicht anlegen (%d)",
  33.   "Unbekannter MySQL Server Host (%-.64s) (%d)",
  34.   "MySQL Server nicht vorhanden",
  35.   "Protokolle ungleich. Server Version = % d Client Version = %d",
  36.   "MySQL client got out of memory",
  37.   "Wrong host info",
  38.   "Localhost via UNIX socket",
  39.   "%s via TCP/IP",
  40.   "Error in server handshake",
  41.   "Lost connection to MySQL server during query",
  42.   "Commands out of sync; You can't run this command now",
  43.   "Verbindung ueber Named Pipe; Host: %-.64s",
  44.   "Kann nicht auf Named Pipe warten. Host: %-.64s  pipe: %-.32s (%lu)",
  45.   "Kann Named Pipe nicht oeffnen. Host: %-.64s  pipe: %-.32s (%lu)",
  46.   "Kann den Status der Named Pipe nicht setzen.  Host: %-.64s  pipe: %-.32s (%lu)",
  47.   "Can't initialize character set %-.64s (path: %-.64s)",
  48.   "Got packet bigger than 'max_allowed_packet'"
  49. };
  50.  
  51. #else /* ENGLISH */
  52. const char *client_errors[]=
  53. {
  54.   "Unknown MySQL error",
  55.   "Can't create UNIX socket (%d)",
  56.   "Can't connect to local MySQL server through socket '%-.64s' (%d)",
  57.   "Can't connect to MySQL server on '%-.64s' (%d)",
  58.   "Can't create TCP/IP socket (%d)",
  59.   "Unknown MySQL Server Host '%-.64s' (%d)",
  60.   "MySQL server has gone away",
  61.   "Protocol mismatch. Server Version = %d Client Version = %d",
  62.   "MySQL client run out of memory",
  63.   "Wrong host info",
  64.   "Localhost via UNIX socket",
  65.   "%s via TCP/IP",
  66.   "Error in server handshake",
  67.   "Lost connection to MySQL server during query",
  68.   "Commands out of sync;  You can't run this command now",
  69.   "%s via named pipe",
  70.   "Can't wait for named pipe to host: %-.64s  pipe: %-.32s (%lu)",
  71.   "Can't open named pipe to host: %-.64s  pipe: %-.32s (%lu)",
  72.   "Can't set state of named pipe to host: %-.64s  pipe: %-.32s (%lu)",
  73.   "Can't initialize character set %-.64s (path: %-.64s)",
  74.   "Got packet bigger than 'max_allowed_packet'"
  75. };
  76. #endif
  77.  
  78.  
  79. void init_client_errs(void)
  80. {
  81.   errmsg[CLIENT_ERRMAP] = &client_errors[0];
  82. }
  83.