Search Results
https://dev.mysql.com/doc/refman/8.4/en/version-tokens-reference.html
(It is not an error to delete nonexisting tokens.) To clear the token list entirely without knowing which tokens are in the list, pass NULL or a string containing no tokens to version_tokens_set(): mysql> SELECT version_tokens_set(NULL); ... The ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-configuring-options.html
batchContinueOnError false boolean (READ ONLY) In SQL batch mode, force processing to continue if an error is found. If an SSL error occurs, the command stops and an error is returned. history.autoSave true boolean Save (true) or clear (false) ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-errno.html
unsigned int mysql_stmt_errno(MYSQL_STMT *stmt) Description For the statement specified by stmt, mysql_stmt_errno() returns the error code for the most recently invoked statement API function that can succeed or fail. Client error message numbers ...
https://dev.mysql.com/doc/connectors/en/connector-python-example-ddl.html
If there is an error, we examine the error number to check if the database does not exist. On any other error, the application exits and displays the error message. In a real application, we would typically avoid the error condition entirely by ...
https://dev.mysql.com/doc/connector-python/en/connector-python-example-ddl.html
If there is an error, we examine the error number to check if the database does not exist. On any other error, the application exits and displays the error message. In a real application, we would typically avoid the error condition entirely by ...
https://dev.mysql.com/doc/internals/en/x-protocol-expect-expectations.html
Assume the PrepareFind fails: don't execute the Execute don't try to close the stmt Mysqlx.Expect::Open([+no_error]) Mysqlx.Crud::PrepareFind(stmt_id=1, ...) // may fail Mysqlx.PreparedStmt::Execute(stmt_id=1, ...) // expectation(no_error) failed ...
https://dev.mysql.com/doc/refman/8.4/en/faqs-mysql-cluster.html
The loading process terminates prematurely and I get an error message like this one: A.10.14. How do I find out what an error or warning message means when using NDB Cluster? A.10.19. In some cases it is possible to get Table is full errors in MySQL ... In the following section, we answer questions that are frequently asked about MySQL NDB Cluster and the NDB storage ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-configuration-commands.html
Default values are hard-coded into MySQL NDB Cluster; you can override a default value for a given configuration attribute (using the set command) or reset a given attribute value to its default (using the reset command), but you cannot change a ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-set-local-infile-handler.html
void mysql_set_local_infile_handler(MYSQL *mysql, int (*local_infile_init)(void **, const char *, void *), int (*local_infile_read)(void *, char *, unsigned int), void (*local_infile_end)(void *), int (*local_infile_error)(void *, char*, unsigned ...It enables application programs to exert control over local (client-side) data file ...
https://dev.mysql.com/doc/internals/en/x-protocol-use-cases-use-cases.html
Streaming Inserts When inserting a large set of data (data import), make a trade-off among: memory usage on client and server side network round-trips error reporting For this example it is assumed that 1 million rows, each 1024 bytes in size have ... Topics in this section: Prepared Statements with Single Round-Trip Streaming Inserts SQL with Multiple Resultsets Inserting CRUD Data in a Batch Cross-Collection Update and Delete Prepared Statements with Single Round-Trip In the MySQL Client/Server Protocol, a PREPARE/EXECUTE cycle required two round-trips as the COM_STMT_EXECUTE requires data from the COM_STMT_PREPARE-ok ...