Search Results
https://dev.mysql.com/doc/refman/8.4/en/apis-ruby.html
The mysql2 Ruby gem provides an API for connecting to MySQL, performing queries, and iterating through results; it is intended to support MySQL 5.7 and MySQL 8.0. For more information, see the mysql2 page at RubyGems.org or the project's GitHub ...
https://dev.mysql.com/doc/refman/8.4/en/audit-api-message-emit.html
The audit_api_message_emit component enables applications to add their own message events to the audit log, using the audit_api_message_emit_udf() function. For concreteness, examples use the audit_log plugin described in Section 8.4.5, “MySQL ...
https://dev.mysql.com/doc/refman/8.4/en/authentication-plugins.html
Note If you are looking for information about the authentication_oci plugin, it is MySQL HeatWave Service only. The following sections describe pluggable authentication methods available in MySQL and the plugins that implement these methods. For ...
https://dev.mysql.com/doc/refman/8.4/en/backup-types.html
This section describes the characteristics of different types of backups. Physical (Raw) Versus Logical Backups Physical backups consist of raw copies of the directories and files that store database contents. This type of backup is suitable for ...
https://dev.mysql.com/doc/refman/8.4/en/begin-end.html
END syntax is used for writing compound statements, which can appear within stored programs (stored procedures and functions, triggers, and events). A compound statement can contain multiple statements, enclosed by the BEGIN and END keywords.
https://dev.mysql.com/doc/refman/8.4/en/binary-log-setting.html
You can select the binary logging format explicitly by starting the MySQL server with --binlog-format=type. The supported values for type are: STATEMENT causes logging to be statement based. Setting the binary logging format does not activate ...
https://dev.mysql.com/doc/refman/8.4/en/case.html
CASE case_value WHEN when_value THEN statement_list [WHEN when_value THEN statement_list] ... [ELSE statement_list] END CASE Or: CASE WHEN search_condition THEN statement_list [WHEN search_condition THEN statement_list] ... [ELSE statement_list] ...
https://dev.mysql.com/doc/refman/8.4/en/channels-startup-options.html
This section describes startup options which are impacted by the addition of replication channels. The following startup options now affect all channels in a replication topology. --log-replica-updates All transactions received by the replica (even ...
https://dev.mysql.com/doc/refman/8.4/en/charset-applications.html
For applications that store data using the default MySQL character set and collation (utf8mb4, utf8mb4_0900_ai_ci), no special configuration should be needed. If applications require data storage using a different character set or collation, you ...
https://dev.mysql.com/doc/refman/8.4/en/charset-configuration.html
The MySQL server has a compiled-in default character set and collation. To change these defaults, use the --character-set-server and --collation-server options when you start the server. The collation must be a legal collation for the default ...