Search Results
https://dev.mysql.com/doc/c-api/8.4/en/mysql-change-user.html
bool mysql_change_user(MYSQL *mysql, const char *user, const char *password, const char *db) Description Changes the user and causes the database specified by db to become the default (current) database on the connection specified by mysql. In ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-1-0.html
Version 8.1.0 is a new GA release of MySQL Connector/J. MySQL Connector/J 8.1.0 supersedes the 8.0 series and is recommended for use on production systems. It supports the Java Database Connectivity (JDBC) 4.2 API, and implements the X DevAPI. (WL ...This release can be used against MySQL Server version 5.7 and ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-9-2-0.html
Version 9.2.0 is a new GA release of MySQL Connector/J. MySQL Connector/J 9.2.0 supersedes 9.1 and is recommended for use on production systems. It supports the Java Database Connectivity (JDBC) 4.2 API, and implements the X DevAPI. Installation ...
https://dev.mysql.com/doc/mysql-router/9.4/en/router-read-replicas.html
Failure Handling MySQL Router does not route connections to Read Replicas in the following situations: If there is no quorum in the Cluster. MySQL Router routing policy is affected by configuration in the following ways: If the Cluster state is ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/myai-installation-clean-cmdline.html
--mysql-root-allow-remote-connection: The root user is allowed to connect from hosts other than localhost. --mysql-studio-port=port#: Replace the default port number (8000) with another one for MySQL Studio's server to listen for connections. The ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-how-to-import-onnx.html
To review this setting, connect to the MySQL server and run the following command: mysql> SHOW VARIABLES LIKE 'secure_file_priv'; To load the encoded file directly into a table column: From a terminal window, upload the ONNX file to the folder of ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-model-handles.html
In the following example, @census_model is defined as the model handle session variable with no set model handle name: mysql> CALL sys.ML_TRAIN('heatwaveml_bench.census_train', 'revenue', JSON_OBJECT('task', 'classification'), @census_model); While ... When ML_TRAIN trains a model, you have the option to specify a name for the model, which is the model ...
https://dev.mysql.com/doc/workbench/en/wb-command-line-options.html
The location of the generated log files, such as wb.log, are as follows: Table 2.1 Default location of generated MySQL Workbench log files Platform Default location Linux ~/.mysql/workbench/log/ macOS ~/Library/Application Support/Workbench/log/ ...
https://dev.mysql.com/doc/workbench/en/wb-what-is-new-63.html
User Interface Changes The home screen was modified: the connections, models, and starters were split into individual pages. This avoids the need to traffic all data through MySQL Workbench, or to have a permanent network connection between the ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-statements-callable.html
Notice that you have to use JDBC escape syntax, and that the parentheses surrounding the parameter placeholders are not optional: Example 3.7 Connector/J: Using Connection.prepareCall() import java.sql.CallableStatement; ... For performance reasons, ...For more information on MySQL stored procedures, please refer to Using Stored ...