Search Results
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-connection-openid-oauth.html
Note OpenID Connect authentication protocol is supported by MySQL Enterprise Edition, only. To connect to a server using OpenID Connect, you must have an OpenID token file and an OpenID user on the target server. For example: CREATE USER ...A ...
https://dev.mysql.com/doc/connectors/en/connector-j-connp-props-performance-extensions.html
Default Value com.mysql.cj.PerConnectionLRUFactory Since Version 5.1.1 serverConfigCacheFactory Name of a class implementing 'com.mysql.cj.CacheAdapterFactory', which will be used to create caches for MySQL server configuration values. Default Value ... callableStmtCacheSize If 'cacheCallableStmts' is enabled, how many callable statements should be cached? Default Value 100 Since Version 3.1.2 metadataCacheSize The number of queries to cache 'ResultSetMetadata' for if 'cacheResultSetMetaData' is set to ...
https://dev.mysql.com/doc/connector-j/en/connector-j-connp-props-performance-extensions.html
Default Value com.mysql.cj.PerConnectionLRUFactory Since Version 5.1.1 serverConfigCacheFactory Name of a class implementing 'com.mysql.cj.CacheAdapterFactory', which will be used to create caches for MySQL server configuration values. Default Value ... callableStmtCacheSize If 'cacheCallableStmts' is enabled, how many callable statements should be cached? Default Value 100 Since Version 3.1.2 metadataCacheSize The number of queries to cache 'ResultSetMetadata' for if 'cacheResultSetMetaData' is set to ...
https://dev.mysql.com/doc/workbench/en/wb-migration-wizard-connection.html
A connection is made to the source and target database servers. Source Connection Select the source RDBMS that is migrating to MySQL. Choose the Database System that is being migrated and the other connection parameters will change accordingly (see ...Figure 10.50 MySQL Workbench migration: Source Selection (Parameters) Target Selection The target is the MySQL database that will contain the migrated ...
https://dev.mysql.com/doc/refman/8.4/en/connecting-disconnecting.html
To connect to the server, you usually need to provide a MySQL user name when you invoke mysql and, most likely, a password. Contact your administrator to find out what connection parameters you should use to connect (that is, what host, user name, ...If the server runs on a machine other than the one where you log in, you must also specify a host ...
https://dev.mysql.com/doc/workbench/en/wb-connection-properties.html
When a connection is selected, it is highlighted and its properties are displayed in the properties palette. The following list describes them: caption: The name of the connection. By default, the name is the name of the foreign key and the property ...This is used, for example, when drawing MyISAM tables with a visual relationship, but with no foreign ...
https://dev.mysql.com/doc/connectors/en/connector-net-connections-errors.html
Because connecting to an external server is unpredictable, it is important to add error handling to your .NET application. When there is an error connecting, the MySqlConnection class will return a MySqlException object. The two most common error ...This object has two properties that are of interest when handling errors: Message: A message that describes the current ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-connect.html
Syntax: MySQLConnection.connect(**kwargs) This method sets up a connection, establishing a session with the MySQL server. For a complete list of possible arguments, see Section 6.7.1, “Connector/Python Connection Arguments”. Example: cnx = ...
https://dev.mysql.com/doc/connector-net/en/connector-net-connections-errors.html
Because connecting to an external server is unpredictable, it is important to add error handling to your .NET application. When there is an error connecting, the MySqlConnection class will return a MySqlException object. The two most common error ...This object has two properties that are of interest when handling errors: Message: A message that describes the current ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-connect.html
Syntax: MySQLConnection.connect(**kwargs) This method sets up a connection, establishing a session with the MySQL server. For a complete list of possible arguments, see Section 7.1, “Connector/Python Connection Arguments”. Example: cnx = ...If ...