Search Results
https://dev.mysql.com/doc/c-api/8.4/en/c-api-binary-log-function-reference.html
The following table summarizes the functions available for reading a replication event stream from a binary log. For greater detail, see the descriptions in Section 10.4, “C API Binary Log Function Descriptions”. Table 10.1 C API Binary Log ...
https://dev.mysql.com/doc/connectors/en/connector-python-installation-binary.html
Binaries are distributed in the RPM and the wheel package formats. Connector/Python includes the classic and X DevAPI connector APIs, which are installed separately.
MySQL Connector/Python Developer Guide :: 4.4 Installing Connector/Python from a Binary Distribution
https://dev.mysql.com/doc/connector-python/en/connector-python-installation-binary.html
Binaries are distributed in the RPM and the wheel package formats. Connector/Python includes the classic and X DevAPI connector APIs, which are installed separately.
https://dev.mysql.com/doc/internals/en/binary-log.html
This chapter describes the MySQL binary log, which contains information about data modifications made to a MySQL server instance. Most of the information here applies equally to the relay log used on replication slave servers because a relay log ...
https://dev.mysql.com/doc/internals/en/binary-protocol-resultset.html
It just contains the rows in Binary Protocol Resultset Row format. ProtocolBinary::Resultset: Packets: lenenc_int column_count > 0 column_count * Protocol::ColumnDefinition none or many ProtocolBinary::ResultsetRow EOF_Packet Note If the ...
https://dev.mysql.com/doc/internals/en/binary-protocol-value.html
ProtocolBinary::MYSQL_TYPE_STRING, ProtocolBinary::MYSQL_TYPE_VARCHAR, ProtocolBinary::MYSQL_TYPE_VAR_STRING, ProtocolBinary::MYSQL_TYPE_ENUM, ProtocolBinary::MYSQL_TYPE_SET, ProtocolBinary::MYSQL_TYPE_LONG_BLOB, ...
https://dev.mysql.com/doc/internals/en/generating-browsable-binary-log-information.html
Source files in the sql directory of a MySQL source tree or source distribution contain comments that can be processed with doxygen to generate HTML files that describe classes, files, and so forth. To generate the HTML files and view information ...
https://dev.mysql.com/doc/internals/en/row-based-binary-logging.html
Logging in this format can be done independent of whether the log is used for replication. That is, replication need not figure into the use of the binary log at all. Similar remarks apply to the terms "statement-based logging" (SBL) versus ...
https://dev.mysql.com/doc/refman/8.4/en/binary-log-formats.html
The server uses several logging formats to record information in the binary log: Replication capabilities in MySQL originally were based on propagation of SQL statements from source to replica. You can cause this format to be used by starting the ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-binary-log-interface-usage.html
The following simple example program demonstrates the binary log C API functions. Program notes: mysql is assumed to be a valid connection handler. The initial SET statement sets the @source_binlog_checksum user-defined variable that the server ...