Search Results
https://dev.mysql.com/doc/refman/8.4/en/innodb-dedicated-server.html
When the server is started with --innodb-dedicated-server, InnoDB automatically calculates values for and sets the following system variables: innodb_buffer_pool_size innodb_redo_log_capacity Note innodb_redo_log_capacity supersedes both ...The ...
https://dev.mysql.com/doc/refman/8.4/en/locale-support.html
The set of locales supported by MySQL may differ from those supported by your operating system. The locale indicated by the lc_time_names system variable controls the language used to display day and month names and abbreviations. This variable ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-install-windows-source.html
The procedure for doing this is almost identical to the procedure used to compile the standard MySQL Server binaries for Windows, and uses the same tools. However, there are two major differences: MySQL NDB Cluster 8.4 is built from the MySQL Server ... Oracle provides precompiled NDB Cluster binaries for Windows which should be adequate for most ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-overview.html
NDB Cluster integrates the standard MySQL server with an in-memory clustered storage engine called NDB (which stands for “Network DataBase”). In our documentation, the term NDB refers to the part of the setup that is specific to the storage ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-import-cluster-procedure.html
Create a MySQL Cluster Manager site encompassing these hosts, using the create site command. Create and configure in MySQL Cluster Manager a “target” cluster whose configuration matches that of the “wild” cluster. Create a MySQL user named ... The importing process consists generally of the steps listed here: Prepare the “wild” cluster for ...
https://dev.mysql.com/doc/mysql-errors/8.4/en/error-reference-introduction.html
The MySQL server writes some error messages to its error log. The MySQL client library takes errors received from the server and makes them available to the host client program. Error messages that originate only from within the MySQL client ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-bind-param.html
bool mysql_bind_param(MYSQL *mysql, unsigned n_params, MYSQL_BIND *bind, const char **name) Description mysql_bind_param(), available as of MySQL 8.0.23, enables defining attributes that apply to the next query sent to the server. Attributes ...For ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-eof.html
mysql_eof() determines whether the last row of a result set has been read. If you acquire a result set from a successful call to mysql_store_result(), the client receives the entire set in one operation. In this case, a NULL return from ...Nonzero ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-field-count.html
unsigned int mysql_field_count(MYSQL *mysql) Description Returns the number of columns for the most recent query on the connection. The normal use of this function is when mysql_store_result() returned NULL (and thus you have no result set pointer). In this case, you can call mysql_field_count() to determine whether mysql_store_result() should have produced a nonempty ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/index.html
Abstract This document describes what you need to know when working on the MySQL 8.4 code. To track or contribute to MySQL development, follow the instructions in Installing MySQL Using a Development Source Tree. If you are interested in MySQL ...