1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/* Copyright (C) 2000-2004 MySQL AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation.
There are special exceptions to the terms and conditions of the GPL as it
is applied to this software. View the full text of the exception in file
EXCEPTIONS-CLIENT in the directory of this software distribution.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/* Error messages for MySQL clients */
/* (Error messages for the daemon are in share/language/errmsg.sys) */
#include <drizzled/global.h>
#include <libdrizzle/gettext.h>
#include "errmsg.h"
const char *client_errors[]=
{
N_("Unknown Drizzle error"),
N_("Can't create UNIX socket (%d)"),
N_("Can't connect to local Drizzle server through socket '%-.100s' (%d)"),
N_("Can't connect to Drizzle server on '%-.100s' (%d)"),
N_("Can't create TCP/IP socket (%d)"),
N_("Unknown Drizzle server host '%-.100s' (%d)"),
N_("Drizzle server has gone away"),
N_("Protocol mismatch; server version = %d, client version = %d"),
N_("Drizzle client ran out of memory"),
N_("Wrong host info"),
N_("Localhost via UNIX socket"),
N_("%-.100s via TCP/IP"),
N_("Error in server handshake"),
N_("Lost connection to Drizzle server during query"),
N_("Commands out of sync; you can't run this command now"),
N_("Named pipe: %-.32s"),
N_("Can't wait for named pipe to host: %-.64s pipe: %-.32s (%lu)"),
N_("Can't open named pipe to host: %-.64s pipe: %-.32s (%lu)"),
N_("Can't set state of named pipe to host: %-.64s pipe: %-.32s (%lu)"),
N_("Can't initialize character set %-.32s (path: %-.100s)"),
N_("Got packet bigger than 'max_allowed_packet' bytes"),
N_("Embedded server"),
N_("Error on SHOW SLAVE STATUS:"),
N_("Error on SHOW SLAVE HOSTS:"),
N_("Error connecting to slave:"),
N_("Error connecting to master:"),
N_("SSL connection error"),
N_("Malformed packet"),
N_("(unused error message)"),
N_("Invalid use of null pointer"),
N_("Statement not prepared"),
N_("No data supplied for parameters in prepared statement"),
N_("Data truncated"),
N_("No parameters exist in the statement"),
N_("Invalid parameter number"),
N_("Can't send long data for non-string/non-binary data types "
"(parameter: %d)"),
N_("Using unsupported buffer type: %d (parameter: %d)"),
N_("Shared memory: %-.100s"),
N_("(unused error message)"),
N_("(unused error message)"),
N_("(unused error message)"),
N_("(unused error message)"),
N_("(unused error message)"),
N_("(unused error message)"),
N_("(unused error message)"),
N_("(unused error message)"),
N_("(unused error message)"),
N_("Wrong or unknown protocol"),
N_("Invalid connection handle"),
N_("Connection using old (pre-4.1.1) authentication protocol refused "
"(client option 'secure_auth' enabled)"),
N_("Row retrieval was canceled by drizzle_stmt_close() call"),
N_("Attempt to read column without prior row fetch"),
N_("Prepared statement contains no metadata"),
N_("Attempt to read a row while there is no result set associated with "
"the statement"),
N_("This feature is not implemented yet"),
N_("Lost connection to Drizzle server while waiting for initial "
"communication packet, system error: %d"),
N_("Lost connection to Drizzle server while reading initial communication "
"packet, system error: %d"),
N_("Lost connection to Drizzle server while sending authentication "
"information, system error: %d"),
N_("Lost connection to Drizzle server while reading authorization "
"information, system error: %d"),
N_("Lost connection to Drizzle server while setting initial database, "
"system error: %d"),
N_("Statement closed indirectly because of a preceeding %s() call"),
""
};
const char *
get_client_error(unsigned int err_index)
{
return _(client_errors[err_index]);
}
|