Search Results
https://dev.mysql.com/doc/internals/en/ssl.html
The MySQL Protocol also supports encryption and authentication via SSL. The encryption is transparent to the rest of the protocol and is applied after the data is compressed right before the data is written to the network layer. The SSL suppport is ...
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-metric-innodb-insertbufferactivity-category.html
Lists the InnoDB Insert Buffer Activity metrics and provides a brief description of each. Table 6.12 InnoDB Insert Buffer Activity Metrics NameDescriptionDelete Discarded (Delta) The total number of purge merged operations discarded. Delete Mark ...
https://dev.mysql.com/doc/x-devapi-userguide/en/expression-strings.html
Defining string expressions is straightforward as these are easy to read and write. The disadvantage is that they need to be parsed before they can be transfered to the MySQL server. All implementations can use the syntax illustrated here, which is ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/expression-strings.html
Defining string expressions is straightforward as these are easy to read and write. The disadvantage is that they need to be parsed before they can be transfered to the MySQL server. All implementations can use the syntax illustrated here, which is ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/expression-strings.html
Defining string expressions is straightforward as these are easy to read and write. The disadvantage is that they need to be parsed before they can be transfered to the MySQL server. All implementations can use the syntax illustrated here, which is ...
https://dev.mysql.com/doc/workbench/en/wb-table-editor-triggers-tab.html
The Triggers subtab opens a workspace that enables you to create new triggers or edit existing triggers. All triggers are organized within a tree structure by section, such as BEFORE INSERT and AFTER INSERT. To add a new trigger, click the [+] icon ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-reconnect.html
Syntax: cnx.reconnect(attempts=1, delay=0) Attempt to reconnect to the MySQL server. The argument attempts specifies the number of times a reconnect is tried. The delay argument is the number of seconds to wait between each retry. You might set the ...
https://dev.mysql.com/doc/connectors/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/connectors/en/connector-python-api-mysqlcursorraw.html
A MySQLCursorRaw cursor skips the conversion from MySQL data types to Python types when fetching rows. A raw cursor is usually used to get better performance or when you want to do the conversion yourself. To create a raw cursor, use the raw ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-reconnect.html
Syntax: cnx.reconnect(attempts=1, delay=0) Attempt to reconnect to the MySQL server. The argument attempts specifies the number of times a reconnect is tried. The delay argument is the number of seconds to wait between each retry. You might set the ...