Search Results
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-unix-socket.html
This read-only property returns the Unix socket file for connecting to the MySQL server.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-use-unicode.html
This property sets and returns whether the connection uses Unicode with the value True or False. # gets whether the connector returns string fields as unicode or not print(cnx.use_unicode) >> True # set or update use_unicode property ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-user.html
This read-only property returns the user name used for connecting to the MySQL server.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-add-attribute.html
Syntax: cursor.add_attribute(name, value) Adds a new named query attribute to the list, as part of MySQL server's Query Attributes functionality. name: The name must be a string, but no other validation checks are made; attributes are sent as is to ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-column-names.html
Syntax: sequence = cursor.column_names This read-only property returns the column names of a result set as sequence of Unicode strings.
https://dev.mysql.com/doc/internals/en/append-block-event.html
Binlog::APPEND_BLOCK_EVENT: append block-data to file Payload 4 file_id string.EOF block-data .
https://dev.mysql.com/doc/internals/en/basic-types.html
The protocol has a few very basic types that are used throughout the protocol: Integers Strings .
https://dev.mysql.com/doc/internals/en/begin-load-query-event.html
Binlog::BEGIN_LOAD_QUERY_EVENT: truncate a file and set block-data Payload 4 file_id string.EOF block-data See Binlog::APPEND_BLOCK_EVENT .
https://dev.mysql.com/doc/internals/en/binary-log-versions.html
There are several versions of the binary log file format: v1: Used in MySQL 3.23 v3: Used in MySQL 4.0.2 though 4.1 v4: Used in MySQL 5.0 and up A v2 format was used briefly (in early MySQL 4.0.x versions), but it is obsolete and no longer ...
https://dev.mysql.com/doc/internals/en/clear-text-authentication.html
Authentication::ClearText: client-side requires no input from the server client-side sends password as string.NUL Name mysql_clear_password Requires CLIENT_PLUGIN_AUTH Image description .