Search Results
https://dev.mysql.com/doc/workbench/en/wb-mysql-connections-navigator-instance-server-logs.html
The Administration - Server Logs tab displays log information for the MySQL server represented by each connection tab. For each connection, the Administration - Server Logs tab includes additional tabs for the general error logs and the slow logs ...Error Log File The following figure shows an example of entries within the Error Log File ...
https://dev.mysql.com/doc/workbench/en/wb-mysql-connections-secure-auth.html
As of MySQL 5.6, a sha256_password option is also available although it requires an SSL or encrypted connection. Note If using the MySQL command line is not an option, then you could use an older version of MySQL Workbench (version 6.3.4 and ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-is-connected.html
This method checks whether the connection to MySQL is available using the ping() method, but unlike ping(), is_connected() returns True when the connection is available, False otherwise.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-is-connected.html
This method checks whether the connection to MySQL is available using the ping() method, but unlike ping(), is_connected() returns True when the connection is available, False otherwise.
https://dev.mysql.com/doc/workbench/en/wb-preferences-others.html
Timeouts Migration Connection Timeout: [60] Maximum time to wait before a connection is aborted. Figure 3.18 Preferences: Others Home Screen Show Welcome Message on Connections Screen Enabled by default. This option displays or hides the text and ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbtransaction.html
In the case where a NoDataFound error is a possibility, you must check for it explicitly, as shown in this example: Ndb_cluster_connection myConnection; if( myConnection.connect(4, 5, 1) ) { cout << "Unable to connect to cluster within 30 secs." << ...A transaction consists of a list of operations represented by the NdbOperation class, or by one of its subclasses—NdbScanOperation, NdbIndexOperation, or ...
https://dev.mysql.com/doc/refman/8.4/en/version-tokens-usage.html
Based on the type of statements it issues (for example, reads versus writes), a client selects an appropriate server and connects to it. The client-side logic for detecting version token errors and selecting a new server can be implemented different ... Before using Version Tokens, install it according to the instructions provided at Section 7.6.6.2, “Installing or Uninstalling Version ...
https://dev.mysql.com/doc/workbench/en/wb-mysql-connections-vault.html
By using the vault, you need not enter credentials every time MySQL Workbench attempts to connect to a server. For example, a local connection might use "localhost", "127.0.0.1", or "::1", but these are stored separately in the password storage ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-getschema.html
The GetSchema() method of the connection object can be used to retrieve schema information about the database currently connected to. The following are the collections currently provided by Connector/NET, in addition to the common collections shown ...The schema information is returned in the form of a ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-connection-id.html
This property returns the integer connection ID (thread ID or session ID) for the current connection or None when not connected.