Search Results
https://dev.mysql.com/doc/internals/en/secure-password-authentication.html
The password is calculated by: SHA1( password ) XOR SHA1( "20-bytes random data from server" <concat> SHA1( SHA1( password ) ) ) .
https://dev.mysql.com/doc/internals/en/initialization-callback.html
The initialization callback is registered together with the procedure name in the sql_procs array in procedure.cc.
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 ...
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/connector-python/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/internals/en/logging-transactions-rules-for-commmitting-statements.html
(R-log-commit-statement) All other statements that have a pre-commit are written directly to the binlog. (Note: this is semantically equivalent to writing it to the SC and flushing the SC. However, due to requirements by NDB (which have not been ...