client.c, libmysql.c:
Symbol spelling change. errmsg.c: Client error message edits. errmsg.h: Two symbol spelling changes.
This commit is contained in:
parent
0c6cc6951a
commit
c53dc62ece
@ -14,8 +14,8 @@
|
|||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
||||||
|
|
||||||
/* Error messages for mysql clients */
|
/* Error messages for MySQL clients */
|
||||||
/* error messages for the demon is in share/language/errmsg.sys */
|
/* (Error messages for the daemon are in share/language/errmsg.sys) */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -83,10 +83,10 @@ extern const char *client_errors[]; /* Error messages */
|
|||||||
#define CR_SHARED_MEMORY_FILE_MAP_ERROR 2042
|
#define CR_SHARED_MEMORY_FILE_MAP_ERROR 2042
|
||||||
#define CR_SHARED_MEMORY_MAP_ERROR 2043
|
#define CR_SHARED_MEMORY_MAP_ERROR 2043
|
||||||
#define CR_SHARED_MEMORY_EVENT_ERROR 2044
|
#define CR_SHARED_MEMORY_EVENT_ERROR 2044
|
||||||
#define CR_SHARED_MEMORY_CONNECT_ABANDODED_ERROR 2045
|
#define CR_SHARED_MEMORY_CONNECT_ABANDONED_ERROR 2045
|
||||||
#define CR_SHARED_MEMORY_CONNECT_SET_ERROR 2046
|
#define CR_SHARED_MEMORY_CONNECT_SET_ERROR 2046
|
||||||
#define CR_CONN_UNKNOW_PROTOCOL 2047
|
#define CR_CONN_UNKNOW_PROTOCOL 2047
|
||||||
#define CR_INVALID_CONN_HANDLE 2048
|
#define CR_INVALID_CONN_HANDLE 2048
|
||||||
#define CR_SECURE_AUTH 2049
|
#define CR_SECURE_AUTH 2049
|
||||||
#define CR_FETCH_CANCELLED 2050
|
#define CR_FETCH_CANCELED 2050
|
||||||
#define CR_NO_DATA 2051
|
#define CR_NO_DATA 2051
|
||||||
|
@ -29,9 +29,9 @@ const char *client_errors[]=
|
|||||||
"Keine Verbindung zu lokalem MySQL Server, socket: '%-.100s' (%d)",
|
"Keine Verbindung zu lokalem MySQL Server, socket: '%-.100s' (%d)",
|
||||||
"Keine Verbindung zu MySQL Server auf %-.100s (%d)",
|
"Keine Verbindung zu MySQL Server auf %-.100s (%d)",
|
||||||
"Kann TCP/IP-Socket nicht anlegen (%d)",
|
"Kann TCP/IP-Socket nicht anlegen (%d)",
|
||||||
"Unbekannter MySQL server host (%-.100s) (%d)",
|
"Unbekannter MySQL Server Host (%-.100s) (%d)",
|
||||||
"MySQL Server nicht vorhanden",
|
"MySQL Server nicht vorhanden",
|
||||||
"Protokolle ungleich; Server version = %d, client version = %d",
|
"Protokolle ungleich; Server Version = %d, Client Version = %d",
|
||||||
"MySQL client ran out of memory",
|
"MySQL client ran out of memory",
|
||||||
"Wrong host info",
|
"Wrong host info",
|
||||||
"Localhost via UNIX socket",
|
"Localhost via UNIX socket",
|
||||||
|
@ -2522,7 +2522,7 @@ static int stmt_read_row_unbuffered(MYSQL_STMT *stmt, unsigned char **row)
|
|||||||
if (mysql->status != MYSQL_STATUS_GET_RESULT)
|
if (mysql->status != MYSQL_STATUS_GET_RESULT)
|
||||||
{
|
{
|
||||||
set_stmt_error(stmt, stmt->unbuffered_fetch_cancelled ?
|
set_stmt_error(stmt, stmt->unbuffered_fetch_cancelled ?
|
||||||
CR_FETCH_CANCELLED : CR_COMMANDS_OUT_OF_SYNC,
|
CR_FETCH_CANCELED : CR_COMMANDS_OUT_OF_SYNC,
|
||||||
unknown_sqlstate);
|
unknown_sqlstate);
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
@ -448,7 +448,7 @@ HANDLE create_shared_memory(MYSQL *mysql,NET *net, uint connect_timeout)
|
|||||||
if (WaitForSingleObject(event_connect_answer,connect_timeout*1000) !=
|
if (WaitForSingleObject(event_connect_answer,connect_timeout*1000) !=
|
||||||
WAIT_OBJECT_0)
|
WAIT_OBJECT_0)
|
||||||
{
|
{
|
||||||
error_allow = CR_SHARED_MEMORY_CONNECT_ABANDODED_ERROR;
|
error_allow = CR_SHARED_MEMORY_CONNECT_ABANDONED_ERROR;
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2528,7 +2528,7 @@ mysql_fetch_row(MYSQL_RES *res)
|
|||||||
{
|
{
|
||||||
set_mysql_error(mysql,
|
set_mysql_error(mysql,
|
||||||
res->unbuffered_fetch_cancelled ?
|
res->unbuffered_fetch_cancelled ?
|
||||||
CR_FETCH_CANCELLED : CR_COMMANDS_OUT_OF_SYNC,
|
CR_FETCH_CANCELED : CR_COMMANDS_OUT_OF_SYNC,
|
||||||
unknown_sqlstate);
|
unknown_sqlstate);
|
||||||
}
|
}
|
||||||
else if (!(read_one_row(mysql, res->field_count, res->row, res->lengths)))
|
else if (!(read_one_row(mysql, res->field_count, res->row, res->lengths)))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user