Search Results
https://dev.mysql.com/doc/refman/8.4/en/charset-connection.html
A “connection” is what a client program makes when it connects to the server, to begin a session within which it interacts with the server. The client sends SQL statements, such as queries, over the session connection. The server sends ...Some ...
https://dev.mysql.com/doc/refman/8.4/en/can-not-connect-to-server.html
A MySQL client on Unix can connect to the mysqld server in two different ways: By using a Unix socket file to connect through a file in the file system (default /tmp/mysql.sock), or by using TCP/IP, which connects through a port number. A Unix ...A ...
https://dev.mysql.com/doc/refman/8.4/en/connecting.html
This section describes use of command-line options to specify how to establish connections to the MySQL server, for clients such as mysql or mysqldump. For information on establishing connections using URI-like connection strings or key-value ...
https://dev.mysql.com/doc/workbench/en/wb-getting-started-tutorial-create-connection.html
This tutorial adds a new connection that can be either an initial connection or an additional connection. To create a new connection, follow these steps: Launch MySQL Workbench to open the home screen. Existing connections are shown when you click ...An instance of MySQL server must be installed, started, and accessible to MySQL Workbench before you ...
https://dev.mysql.com/doc/refman/8.4/en/x-plugin-connection-compression.html
X Plugin supports compression of messages sent over X Protocol connections. Connections can be compressed if the server and the client agree on a mutually supported compression algorithm. Note Different MySQL clients implement support for ...
https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-0.html
To fix this, we now connect in a way that is non-blocking, and that returns in case of a timeout, leaving the retry attempts to the caller—in this specific case, the XCom thread when trying to reconnect to another node. (Bug #36006295) Character ...(Bug #36301441) Audit log filtering by type, using error as the type, did not work ...
https://dev.mysql.com/doc/connectors/en/connector-net-connections-string.html
For the list of option names to use in the connection string, see Section 4.4.5, “Connector/NET Connection Options Reference”. The following is a sample connection string: "server=127.0.0.1;uid=root;pwd=12345;database=test" In this example, the ...In each key-value pair, the option name and its corresponding value are joined by an equal ...
https://dev.mysql.com/doc/connector-net/en/connector-net-connections-string.html
For the list of option names to use in the connection string, see Section 4.5, “Connector/NET Connection Options Reference”. The following is a sample connection string: "server=127.0.0.1;uid=root;pwd=12345;database=test" In this example, the ...
https://dev.mysql.com/doc/refman/8.4/en/gone-away.html
You got a timeout from the TCP/IP connection on the client side. You have encountered a timeout on the server side and the automatic reconnection in the client is disabled (the reconnect flag in the MYSQL structure is equal to 0). You are using a ...
https://dev.mysql.com/doc/refman/8.4/en/connection-access.html
When you attempt to connect to a MySQL server, the server accepts or rejects the connection based on these conditions: Your identity and whether you can verify it by supplying the proper credentials. Otherwise, the server accepts the connection, ...