# -*- coding: utf-8 -*-
|
|
# Copyright (c) 2013, 2022, Oracle and/or its affiliates. All rights reserved.
|
#
|
# This program is free software; you can redistribute it and/or modify
|
# it under the terms of the GNU General Public License, version 2.0, as
|
# published by the Free Software Foundation.
|
#
|
# This program is also distributed with certain software (including
|
# but not limited to OpenSSL) that is licensed under separate terms,
|
# as designated in a particular file or component or in included license
|
# documentation. The authors of MySQL hereby grant you an
|
# additional permission to link the program and your derivative works
|
# with the separately licensed software that they have included with
|
# MySQL.
|
#
|
# Without limiting anything contained in the foregoing, this file,
|
# which is part of MySQL Connector/Python, is also subject to the
|
# Universal FOSS Exception, version 1.0, a copy of which can be found at
|
# http://oss.oracle.com/licenses/universal-foss-exception.
|
#
|
# 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, version 2.0, 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.,
|
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
"""MySQL Error Messages."""
|
|
# This file was auto-generated.
|
_GENERATED_ON = "2021-08-11"
|
_MYSQL_VERSION = (8, 0, 27)
|
|
# pylint: disable=line-too-long
|
# Start MySQL Error messages
|
CR_UNKNOWN_ERROR = "Unknown MySQL error"
|
CR_SOCKET_CREATE_ERROR = "Can't create UNIX socket (%s)"
|
CR_CONNECTION_ERROR = (
|
"Can't connect to local MySQL server through socket '%-.100s' (%s)"
|
)
|
CR_CONN_HOST_ERROR = "Can't connect to MySQL server on '%-.100s:%u' (%s)"
|
CR_IPSOCK_ERROR = "Can't create TCP/IP socket (%s)"
|
CR_UNKNOWN_HOST = "Unknown MySQL server host '%-.100s' (%s)"
|
CR_SERVER_GONE_ERROR = "MySQL server has gone away"
|
CR_VERSION_ERROR = (
|
"Protocol mismatch; server version = %s, client version = %s"
|
)
|
CR_OUT_OF_MEMORY = "MySQL client ran out of memory"
|
CR_WRONG_HOST_INFO = "Wrong host info"
|
CR_LOCALHOST_CONNECTION = "Localhost via UNIX socket"
|
CR_TCP_CONNECTION = "%-.100s via TCP/IP"
|
CR_SERVER_HANDSHAKE_ERR = "Error in server handshake"
|
CR_SERVER_LOST = "Lost connection to MySQL server during query"
|
CR_COMMANDS_OUT_OF_SYNC = (
|
"Commands out of sync; you can't run this command now"
|
)
|
CR_NAMEDPIPE_CONNECTION = "Named pipe: %-.32s"
|
CR_NAMEDPIPEWAIT_ERROR = (
|
"Can't wait for named pipe to host: %-.64s pipe: %-.32s (%s)"
|
)
|
CR_NAMEDPIPEOPEN_ERROR = (
|
"Can't open named pipe to host: %-.64s pipe: %-.32s (%s)"
|
)
|
CR_NAMEDPIPESETSTATE_ERROR = (
|
"Can't set state of named pipe to host: %-.64s pipe: %-.32s (%s)"
|
)
|
CR_CANT_READ_CHARSET = "Can't initialize character set %-.32s (path: %-.100s)"
|
CR_NET_PACKET_TOO_LARGE = "Got packet bigger than 'max_allowed_packet' bytes"
|
CR_EMBEDDED_CONNECTION = "Embedded server"
|
CR_PROBE_SLAVE_STATUS = "Error on SHOW SLAVE STATUS:"
|
CR_PROBE_SLAVE_HOSTS = "Error on SHOW SLAVE HOSTS:"
|
CR_PROBE_SLAVE_CONNECT = "Error connecting to slave:"
|
CR_PROBE_MASTER_CONNECT = "Error connecting to master:"
|
CR_SSL_CONNECTION_ERROR = "SSL connection error: %-.100s"
|
CR_MALFORMED_PACKET = "Malformed packet"
|
CR_WRONG_LICENSE = "This client library is licensed only for use with MySQL servers having '%s' license"
|
CR_NULL_POINTER = "Invalid use of null pointer"
|
CR_NO_PREPARE_STMT = "Statement not prepared"
|
CR_PARAMS_NOT_BOUND = "No data supplied for parameters in prepared statement"
|
CR_DATA_TRUNCATED = "Data truncated"
|
CR_NO_PARAMETERS_EXISTS = "No parameters exist in the statement"
|
CR_INVALID_PARAMETER_NO = "Invalid parameter number"
|
CR_INVALID_BUFFER_USE = (
|
"Can't send long data for non-string/non-binary data types (parameter: %s)"
|
)
|
CR_UNSUPPORTED_PARAM_TYPE = (
|
"Using unsupported buffer type: %s (parameter: %s)"
|
)
|
CR_SHARED_MEMORY_CONNECTION = "Shared memory: %-.100s"
|
CR_SHARED_MEMORY_CONNECT_REQUEST_ERROR = (
|
"Can't open shared memory; client could not create request event (%s)"
|
)
|
CR_SHARED_MEMORY_CONNECT_ANSWER_ERROR = (
|
"Can't open shared memory; no answer event received from server (%s)"
|
)
|
CR_SHARED_MEMORY_CONNECT_FILE_MAP_ERROR = (
|
"Can't open shared memory; server could not allocate file mapping (%s)"
|
)
|
CR_SHARED_MEMORY_CONNECT_MAP_ERROR = "Can't open shared memory; server could not get pointer to file mapping (%s)"
|
CR_SHARED_MEMORY_FILE_MAP_ERROR = (
|
"Can't open shared memory; client could not allocate file mapping (%s)"
|
)
|
CR_SHARED_MEMORY_MAP_ERROR = "Can't open shared memory; client could not get pointer to file mapping (%s)"
|
CR_SHARED_MEMORY_EVENT_ERROR = (
|
"Can't open shared memory; client could not create %s event (%s)"
|
)
|
CR_SHARED_MEMORY_CONNECT_ABANDONED_ERROR = (
|
"Can't open shared memory; no answer from server (%s)"
|
)
|
CR_SHARED_MEMORY_CONNECT_SET_ERROR = (
|
"Can't open shared memory; cannot send request event to server (%s)"
|
)
|
CR_CONN_UNKNOW_PROTOCOL = "Wrong or unknown protocol"
|
CR_INVALID_CONN_HANDLE = "Invalid connection handle"
|
CR_UNUSED_1 = "Connection using old (pre-4.1.1) authentication protocol refused (client option 'secure_auth' enabled)"
|
CR_FETCH_CANCELED = "Row retrieval was canceled by mysql_stmt_close() call"
|
CR_NO_DATA = "Attempt to read column without prior row fetch"
|
CR_NO_STMT_METADATA = "Prepared statement contains no metadata"
|
CR_NO_RESULT_SET = "Attempt to read a row while there is no result set associated with the statement"
|
CR_NOT_IMPLEMENTED = "This feature is not implemented yet"
|
CR_SERVER_LOST_EXTENDED = (
|
"Lost connection to MySQL server at '%s', system error: %s"
|
)
|
CR_STMT_CLOSED = "Statement closed indirectly because of a preceding %s() call"
|
CR_NEW_STMT_METADATA = "The number of columns in the result set differs from the number of bound buffers. You must reset the statement, rebind the result set columns, and execute the statement again"
|
CR_ALREADY_CONNECTED = "This handle is already connected. Use a separate handle for each connection."
|
CR_AUTH_PLUGIN_CANNOT_LOAD = "Authentication plugin '%s' cannot be loaded: %s"
|
CR_DUPLICATE_CONNECTION_ATTR = (
|
"There is an attribute with the same name already"
|
)
|
CR_AUTH_PLUGIN_ERR = "Authentication plugin '%s' reported error: %s"
|
CR_INSECURE_API_ERR = "Insecure API function call: '%s' Use instead: '%s'"
|
CR_FILE_NAME_TOO_LONG = "File name is too long"
|
CR_SSL_FIPS_MODE_ERR = "Set FIPS mode ON/STRICT failed"
|
CR_DEPRECATED_COMPRESSION_NOT_SUPPORTED = (
|
"Compression protocol not supported with asynchronous protocol"
|
)
|
CR_COMPRESSION_WRONGLY_CONFIGURED = (
|
"Connection failed due to wrongly configured compression algorithm"
|
)
|
CR_KERBEROS_USER_NOT_FOUND = (
|
"SSO user not found, Please perform SSO authentication using kerberos."
|
)
|
CR_LOAD_DATA_LOCAL_INFILE_REJECTED = "LOAD DATA LOCAL INFILE file request rejected due to restrictions on access."
|
CR_LOAD_DATA_LOCAL_INFILE_REALPATH_FAIL = (
|
"Determining the real path for '%s' failed with error (%s): %s"
|
)
|
CR_DNS_SRV_LOOKUP_FAILED = "DNS SRV lookup failed with error : %s"
|
CR_MANDATORY_TRACKER_NOT_FOUND = (
|
"Client does not recognise tracker type %s marked as mandatory by server."
|
)
|
CR_INVALID_FACTOR_NO = "Invalid first argument for MYSQL_OPT_USER_PASSWORD option. Valid value should be between 1 and 3 inclusive."
|
# End MySQL Error messages
|