Search Results
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/backup-history-table-update.html
Note If you are working with a multiprimary Group Replication setting, make sure these privileges are granted on all primary nodes; see also Chapter 9, Using MySQL Enterprise Backup with Group Replication. Rename the original mysql.backup_history ...
https://dev.mysql.com/doc/refman/8.4/en/stored-routines-privileges.html
The MySQL grant system takes stored routines into account as follows: The CREATE ROUTINE privilege is needed to create stored routines. This privilege is granted automatically to the creator of a routine if necessary, and dropped from the creator ...The ALTER ROUTINE privilege is needed to alter or drop stored ...
https://dev.mysql.com/doc/workbench/en/wb-plugins.html
Plugins are special Modules that are exposed to the user through the Workbench GUI. A plugin can be a simple function that performs some action on an input, and ends without further interaction with the user. Plugins can have an indefinite runtime, ...This is typically done using the main menu, or the context-sensitive ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-ssl-pfx.html
using (MySqlConnection connection = new MySqlConnection( "database=test;user=sslclient;" + "CertificateFile=H:\\git\\mysql-trunk\\mysql-test\\std_data\\client.pfx;" + "CertificatePassword=pass;" + "SslMode=Required ")) { connection.Open(); } The ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-dsn-windows-5-2.html
You should see a window similar to the following when you open the ODBC Data Source Administrator: Figure 5.2 ODBC Data Source Administrator Dialog To create a System DSN (which will be available to all users), select the System DSN tab. To create a ... The ODBC Data Source Administrator on Windows lets you create DSNs, check driver installation, and configure ODBC functions such as tracing (used for debugging) and connection ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-dsn.html
There are three types of DSN: A System DSN is a global DSN definition that is available to any user and application on a particular system. A System DSN can normally only be configured by a systems administrator, or by a user who has specific ... A ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-ssl-pfx.html
using (MySqlConnection connection = new MySqlConnection( "database=test;user=sslclient;" + "CertificateFile=H:\\git\\mysql-trunk\\mysql-test\\std_data\\client.pfx;" + "CertificatePassword=pass;" + "SslMode=Required ")) { connection.Open(); } The ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-dsn-windows-5-2.html
You should see a window similar to the following when you open the ODBC Data Source Administrator: Figure 5.1 ODBC Data Source Administrator Dialog To create a System DSN (which will be available to all users), select the System DSN tab. To create a ... The ODBC Data Source Administrator on Windows lets you create DSNs, check driver installation, and configure ODBC functions such as tracing (used for debugging) and connection ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-dsn.html
There are three types of DSN: A System DSN is a global DSN definition that is available to any user and application on a particular system. A System DSN can normally only be configured by a systems administrator, or by a user who has specific ... A ...
https://dev.mysql.com/doc/internals/en/debug-sync-point.html
Debug Sync Points give user-level locks the ability to synchronize at arbitrary points in code. If the lock is free (not used by any thread), the synchronization point does nothing but release any user-level lock of the current thread. So the idea ...They were part of the MySQL code until the 6.0.5 and 5.1.46 ...