Search Results
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-prepared.html
Prepared statements can provide significant performance improvements on queries that are executed more than one time. Prepared execution is faster than direct execution for statements executed more than once, primarily because the query is parsed ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-connection-parameters.html
On Unix and macOS, use the parameter name and value as the keyword/value pair in the DSN configuration. Alternatively, you can set these parameters within the InConnectionString argument in the SQLDriverConnect() call. Table 5.1 Connector/ODBC DSN ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-installation-source-unix.html
You need the following tools to build MySQL from source on Unix: A working ANSI C++ compiler. GCC 4.2.1 or later, Sun Studio 12.1 or later, and many current vendor-supplied compilers are known to work. Connector/ODBC is known to work with the iODBC ...
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-cext-reference.html
This chapter contains the public API reference for the Connector/Python C Extension, also known as the _mysql_connector Python module. The _mysql_connector C Extension module can be used directly without any other code of Connector/Python. One ...
https://dev.mysql.com/doc/connector-python/en/connector-python-versions.html
This section describes both version releases, such as 8.0.34, along with notes specific to the two implementations (C Extension and Pure Python). For series that have reached General Availability (GA) status, development releases in the series ...
https://dev.mysql.com/doc/internals/en/additional-accessors-for-plugins.html
Starting with MySQL 5.1.21 the following additional accessors are made available to all plug-ins: Full definition of MYSQL_LEX_STRING (identical to LEX_STRING from m_string.h) Full definition of MYSQL_XID (binary compatible with XID from handler.h) ...
https://dev.mysql.com/doc/internals/en/binlog-formats.html
Status of this subsection: Complete but not reviewed 2009-10-21 The binlog is organized as a linear sequence of events. An SQL query that modifies the database will generate one or more events and append them to the binlog. There are also auxiliary ...
https://dev.mysql.com/doc/internals/en/code-tree-representation.html
Every left branch gets a 0 bit, every right branch gets a 1 bit. The in-memory representation of the trees are two unsigned integers per node. Each describes either a leaf value or an offset (in unsigned integers relative from this node) to another ...
https://dev.mysql.com/doc/internals/en/com-binlog-dump.html
Requests a binlog network stream from the master starting a given position. You can use SHOW BINARY LOGS to get the current logfile and position from the master. The master responds either with a binlog network stream a ERR_Packet or (if ...