Search Results
https://dev.mysql.com/doc/mysql-shell/9.4/en/code-limitations.html
This section describes the limitations of the various supported MySQL Shell modes. SQL Limitations for X Protocol Sessions The following statements are not possible with an X Protocol session: ALTER INSTANCE INSTALL COMPONENT INSTALL PLUGIN LOAD ...
https://dev.mysql.com/doc/mysql-errors/8.4/en/global-error-reference.html
These errors have error codes in the range from 1 to 999. Each global error message includes an error code, SQLSTATE value, and message string, as described in Error Message Sources and Elements. If the server writes a message to the error log that ... This document lists “global” error messages that are shared in the sense that they can be produced by the MySQL server or by MySQL client ...
https://dev.mysql.com/doc/x-devapi-userguide/en/error-handling.html
} catch (const Error &err) { cout << "The database session could not be opened: " << err << endl; // Exit with error code exit(1); } . For all other languages either proper exception handling is required to catch errors or the traditional error ...
https://dev.mysql.com/doc/refman/8.4/en/error-interfaces.html
Error messages can originate on the server side or the client side, and each error message includes an error code, SQLSTATE value, and message string, as described in Section B.1, “Error Message Sources and Elements”. For error checking from ...
https://dev.mysql.com/doc/refman/8.4/en/error-log-rule-based-filtering.html
Error codes can be specified in numeric form or as the corresponding error symbol. For example, ER_STARTUP is the symbolic name for error 1408, so these comparisons are equivalent: IF err_code == ER_STARTUP THEN ... Error symbols are recognized only ...To enable the log_filter_dragnet filter, first load the filter component, then modify the log_error_services ...
https://dev.mysql.com/doc/ndbapi/en/ndb-error-classifications.html
The following table lists the classification codes used for NDB API errors, and their descriptions. Table 2.83 Classification codes for NDB API errors, with corresponding error status and description. These can also be found in the file ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-handling-errors.html
This program demonstrates handling errors and retrying failed transactions using the NDB API. The source code for this example can be found in storage/ndb/ndbapi-examples/ndbapi_retries/ndbapi_retries.cpp in the NDB Cluster source tree. Application ...In this example, we perform two inserts in the same transaction using ...
https://dev.mysql.com/doc/mysql-errors/8.4/en/client-error-reference.html
Here is an example client error message, as displayed by the mysql client: $> mysql -h no-such-host ERROR 2005 (HY000): Unknown MySQL server host 'no-such-host' (0) Each client error message includes an error code, SQLSTATE value, and message ...A ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-lakehouse-error-handling.html
Use the lakehouse_filter_warning_codes_list session variable to filter warning messages by error code. See MySQL 9.4 Error Message Reference for Lakehouse error messages. Error/warning position details are added to JSON data type related ...As of ...
https://dev.mysql.com/doc/internals/en/error-message-multiple-versions.html
It is critical that error codes are identical in all versions. This will ensure that the error code value is the same in GA and all later versions. This will have the side effect that any error codes which are not in GA will change their values in ...That is, the value of ER_SOME_ERROR must be the same in all versions for which it is ...(The discussion uses the name errmsg.txt, but when you cross the boundary from before MySQL 5.5 to 5.5 or ...