Search Results
https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-2-0.html
Version 8.2.0 is a new GA release of MySQL Connector/J. MySQL Connector/J 8.2.0 supersedes 8.1 and is recommended for use on production systems. This release can be used against MySQL Server version 5.7 and later. To prevent the exception, a new ...
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. This release can be used against MySQL Server version 8.0 and later. It supports the Java Database ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-9-3-0.html
Version 9.3.0 is a new GA release of MySQL Connector/J. MySQL Connector/J 9.3.0 supersedes 9.2 and is recommended for use on production systems. This release can be used against MySQL Server version 8.0 and later. (Bug #20802830) When using a ...It ...
https://dev.mysql.com/doc/mysql-router/9.4/en/router-tls-cache.html
MySQL Router uses the following caches: Client TLS session cache: Caches TLS session from the client to MySQL Router. Server TLS session cache: Caches TLS sessions from the MySQL Router to the server. TLS sessions from client to router and router ...
https://dev.mysql.com/doc/workbench/en/wb-mysql-connections-navigator-instance-startup-shutdown.html
The Administration - Startup / Shutdown tab enables you to perform the following service-control actions: View the Startup Message Log. With a valid connection established, and the connection tab for it open, you can access the control actions from ...
https://dev.mysql.com/doc/workbench/en/wb-mysql-connections-navigator-management-status-variables.html
The Administration - Status and System Variables secondary tab lists the full set of server variables for the active MySQL connection. Figure 6.9 Navigator Administration: System Variables Persist System Variables Beginning with MySQL Workbench ...
https://dev.mysql.com/doc/workbench/en/wb-mysql-connections-remote-management.html
The Remote Management tab is available when connecting to MySQL remotely, as the following figure shows. To access this tab, select a remote connection from the MySQL Connections pane or click New to create a new connection.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-buffered.html
Syntax: is_buffered = ccnx.buffered() # getter ccnx.buffered(bool) # setter With no argument, returns True or False to indicate whether the MySQL instance buffers (stores) the results. For the setter syntax, raises a TypeError exception if the ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-connect.html
import _mysql_connector ccnx = _mysql_connector.MySQL() ccnx.connect(user='scott', password='password', host='127.0.0.1', database='employees') ccnx.close() connect() supports the following arguments: host, user, password, database, port, ...If ccnx ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-fetch-fields.html
Returns a list of tuples, one tuple per column Raises a MySQLInterfaceError exception for any MySQL error returned by the MySQL server. Syntax: field_info = ccnx.fetch_fields() Fetches column information for the active result set.