Search Results
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-next-result.html
After calling mysql_stmt_next_result() the state of the connection is as if you had called mysql_stmt_execute(). However, this function does not change the connection state, so if it returns true, you must still call mysql_stmt_next_result() to ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-authentication-plugins-server-side.html
Suppose that you create an account using the following statement: CREATE USER 'my_user'@'localhost' IDENTIFIED WITH my_plugin AS 'my_auth_string'; When my_user connects from the local host, the server invokes my_plugin and passes 'my_auth_string' to ... Declare the server-side plugin with the usual general descriptor format that is used for all server plugin types (see Section 4.4.2.1, “Server Plugin Library and Plugin ...
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. The server plugin should reject ... To ...
https://dev.mysql.com/doc/ndb-operator/8.4/en/tasks-access-outside-k8s.html
To expose the services outside the Kubernetes cluster if you are running minikube, execute the command shown here: > minikube tunnel Using kubectl get service, and passing it the service name or label, you can retrieve the IP address needed by ...
https://dev.mysql.com/doc/relnotes/mysql-cluster-manager/8.4/en/news-8-4-0.html
(Bug #35092990) Bugs Fixed Agent: The default authentication plugin for the mysqld version is now used when mcmd makes a connection. (Bug #25480576) Client: mcm did not issue a deprecation warning when the deprecated validate_password plugin was ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-9-0-0.html
Version 9.0.0 is a new GA release of MySQL Connector/J. MySQL Connector/J 9.0.0 supersedes 8.4 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/mysql-router-configuration-file-example.html
Here is a basic connection routing example to a MySQL InnoDB Cluster named myCluster. Both classic MySQL protocol and X Protocol are enabled, it uses TCP/IP connections instead of Unix domain sockets, and it was generated using --bootstrap as a ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/myai-installation-clean.html
You can choose to Only allow local connections for this user (see the Warning near the beginning of Chapter 2, Installing MySQL AI). You can replace the default port number (8000) with another number for MySQL Shell GUI web server to listen for ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-load-model.html
Loading a Model with the Session Variable After training a model, you set a session variable for the model handle that you can use until the current connection ends. This allows you to easily remember the model handle for future routines on the ...
https://dev.mysql.com/doc/workbench/en/wb-design-modeling-interface.html
Figure 9.2 Create EER Model from Database A wizard-like dialog presents the following steps: Connection Options, Connect to DBMS, Select Schemas, Retrieve Objects, Select Objects, Reverse Engineer, and Results. MySQL Workbench represents each ...