Search Results
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnectionpool-add-connection.html
Syntax: cnxpool.add_connection(cnx = None) This method adds a new or existing MySQLConnection to the pool, or raises a PoolError if the pool is full. Arguments: cnx: The MySQLConnection object to be added to the pool. If this argument is missing, ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-manage-access.html
For more information, see the Ways to Access MySQL HeatWave Service section in OCI Service Guide and AWS Service Guide, and see the Connecting to MySQL HeatWave section in the Oracle Database Service for Azure documentation. Clients and applications ... MySQL HeatWave is designed as a pluggable engine for the DB ...
https://dev.mysql.com/doc/connector-j/en/connector-j-properties-changed.html
A complete list of Connector/J 9.5 connection properties are available in Section 6.3, “Configuration Properties”. The following are connection properties that have been changed (removed, added, have their names changed, or have their default ...
https://dev.mysql.com/doc/refman/8.4/en/information-schema-ndb-transid-mysql-connection-map-table.html
The ndb_transid_mysql_connection_map table provides a mapping between NDB transactions, NDB transaction coordinators, and MySQL Servers attached to an NDB Cluster as API nodes. INFORMATION_SCHEMA Name SHOW Name Remarks mysql_connection_id MySQL ...
https://dev.mysql.com/doc/refman/8.4/en/ipv6-server-config.html
The MySQL server listens on one or more network sockets for TCP/IP connections. Set the bind_address system variable at server startup to specify the TCP/IP connections that a server instance accepts. A value of *, which is the default, or a value ...Each socket is bound to one address, but it is possible for an address to map onto multiple network ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-reset-connection.html
int mysql_reset_connection(MYSQL *mysql) Description Resets the connection to clear the session state. mysql_reset_connection() has effects similar to mysql_change_user() or an auto-reconnect except that the connection is not closed and reopened, ...Reinitializes session system variables to the values of the corresponding global system variables, including system variables that are set implicitly by statements such as SET ...
https://dev.mysql.com/doc/workbench/en/wb-mysql-connections-navigator-instance-startup-shutdown.html
With a valid connection established, and the connection tab for it open, you can access the control actions from either the Navigator panel or by clicking Server and then Startup/Shutdown from the menu. The Administration - Startup / Shutdown tab ...
https://dev.mysql.com/doc/workbench/en/wb-sql-editor-connection-information-panel.html
The Session tab of the Information panel summarizes the current connection to the server, as the following figure shows. Figure 8.21 SQL Editor - Connection Information Palette The Object Info tab of the Information panel summarizes information ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-constructor.html
Syntax: cnx = MySQLConnection(**kwargs) The MySQLConnection constructor initializes the attributes and when at least one argument is passed, it tries to connect to the MySQL server. For a complete list of arguments, see Section 6.7.1, ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnectionpool-get-connection.html
Syntax: cnxpool.get_connection() This method returns a connection from the pool, or raises a PoolError if no connections are available.