Search Results
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-variables-info-table.html
This includes option files not covered by EXPLICIT, EXTRA, LOGIN, PERSISTED, SERVER, or USER. LOGIN The variable was set from a user-specific login path file (~/.mylogin.cnf). USER The variable was set from a user-specific ~/.my.cnf option file.
https://dev.mysql.com/doc/refman/8.4/en/replication-gtids-howto.html
If you are starting with new servers, see Section 19.1.2.3, “Creating a User for Replication” for information about adding a specific user for replication connections and Section 19.1.2.1, “Setting the Replication Source Configuration” for ... This section describes a process for configuring and starting GTID-based replication in MySQL ...
https://dev.mysql.com/doc/refman/8.4/en/secure-client-programming.html
Handle External Data Properly Handle MySQL Error Messages Properly Handle External Data Properly Applications that access MySQL should not trust any data entered by users, who can try to trick your code by entering special or escaped character ...
https://dev.mysql.com/doc/refman/8.4/en/sys-schema-object-index.html
The following tables list sys schema objects and provide a short description of each one.
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-start-client.html
--user=username or -u[ ]username The option specifies the user name for connecting to the agent. To connect successfully, the value of the option must match that specified by the mcmd configuration option mcmd-user of the agent you are connecting ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-authentication-plugins-setup.html
Create a user for whom the server will use the auth_simple plugin for authentication: mysql> CREATE USER 'x'@'localhost' -> IDENTIFIED WITH auth_simple; Use a client program to connect to the server as user x. Invoke the client program each way to ... To compile and install a plugin library file, use the instructions in Section 4.4.3, “Compiling and Installing Plugin ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-connections-in-javascript-and-python.html
A Session object is returned: mysql-py> s2 = shell.open_session('mysqlx://user@localhost:33060?compression=required', 'password') mysql-py> s2 <Session:user@localhost:33060> Session objects that you create in JavaScript mode using these functions ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-application-log-introduction.html
The location of the MySQL Shell application log file is the user configuration path and the file is named mysqlsh.log. For example: C:>echo %APPDATA% C:\Users\exampleuser\AppData\Roaming On Windows, the path is the %APPDATA% folder specific to the ...By default, MySQL Shell sends logging information at logging level 5 (error, warning, and informational messages) to this ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-compressed-connections-8020.html
For example: $> mysqlsh --mysqlx -u user -h localhost -C required The --compress (-C) option is compatible with earlier releases of MySQL Shell (back to MySQL 8.0.14) and still accepts the boolean settings from those releases. The following example ... For X Protocol connections and classic MySQL protocol connections, whenever you create a session object to manage a connection to a MySQL Server instance, you can specify whether compression is required, preferred, or disabled for that ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-how-to-import-onnx.html
The following example converts the /Users/user1/iris.onnx file and creates the output file iris_base64.onnx. # python3 encode_onnx_base64.py import onnx import base64 with open("iris_base64.onnx", "wb") as f: model = ... This topic describes how to ...