Search Results
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnectionpool-constructor.html
If this argument is not given, Connector/Python automatically generates the name, composed from whichever of the host, port, user, and database connection arguments are given in kwargs, in that order. Syntax: MySQLConnectionPool(pool_name=None, ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnectionpool-constructor.html
If this argument is not given, Connector/Python automatically generates the name, composed from whichever of the host, port, user, and database connection arguments are given in kwargs, in that order. Syntax: MySQLConnectionPool(pool_name=None, ...
https://dev.mysql.com/doc/internals/en/character-set.html
MySQL has a very flexible character set support as documented in Character Sets, Collations, Unicode. Number Hex Character Set Name 8 0x08 latin1_swedish_ci 33 0x21 utf8_general_ci 63 0x3f binary Protocol::CharacterSet A character set is defined in ...
https://dev.mysql.com/doc/internals/en/delete-row.html
Synopsis virtual int delete_row ( buf); const byte * buf ; Description This is the delete_row method. buf will contain a copy of the row to be deleted. The server will call this right after the current row has been called (from either a previous ...
https://dev.mysql.com/doc/internals/en/filesort.html
This algorithm is described in the MySQL Reference manual; see ORDER BY Optimization.
https://dev.mysql.com/doc/internals/en/guided-tour-os-specific.html
netware NEW-RPMS os2 VC++Files A few words are in order about the directories that contain files which relate to a particular environment that MySQL can run in. The netware directory contains a set of files for interfacing with netware, and anyone ...
https://dev.mysql.com/doc/internals/en/implementing-the-info-method.html
The optimizer requests an update of table information by calling the [custom-engine.html#custom-engine-api-reference-info handler::info()] method. The info() method does not have a return value, instead it is expected that the storage engine will ...
https://dev.mysql.com/doc/internals/en/indexing-overview.html
The indexing methods either read rows that match a key, scan a set of rows by index order, or read information directly from the index. Adding index support to a storage engine revolves around two tasks: providing information to the optimizer and ...
https://dev.mysql.com/doc/internals/en/notes-on-mtr2.html
NOTE: You can no longer be sure of executing test cases in a particular order due to this and other changes brought on by MTR2. MTR2 has brought some new utility that can improve testing, but also some elements that can be pitfalls. Changes ...
https://dev.mysql.com/doc/internals/en/select-derived.html
If lex->derived_tables flag is present, all SELECT_LEX structures will be scanned (there is a list of all SELECT_LEX structures in reverse order named lex->all_selects_list, the first SELECT in the query will be last in this list). Derived tables ...