Search Results
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-support-version-history.html
This replaces the Qt library based interface for configuring DSN information within the ODBC Data Sources application. This section highlights substantial changes per major Connector/ODBC release series, especially useful when updating legacy code.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-callproc.html
Syntax: result_args = cursor.callproc(proc_name, args=()) This method calls the stored procedure named by the proc_name argument. The args sequence of parameters must contain one entry for each argument that the procedure expects. Result sets ...
https://dev.mysql.com/doc/internals/en/capability-flags.html
Therefore, the EOF packet in the Text Resultset is replaced with an OK packet. The capability flags are used by the client and server to indicate which features they support and want to use. Value 0x00000001 CLIENT_FOUND_ROWS Send found rows ...
https://dev.mysql.com/doc/internals/en/class-procedure-change-columns.html
Prototype: virtual bool change_columns(List<Item> &field_list); Here you can change the structure of the result field list, for example, you can add fields to the field_list or replace the queries result fields by something completely different ...
https://dev.mysql.com/doc/internals/en/command-invocation-syntax.html
is not your current working directory, replace it with the path to the top-level directory of the source tree. The following table shows some common configure invocation syntax and the equivalent CMake commands. To clean out old object files and ...
https://dev.mysql.com/doc/internals/en/custom-engine-source-files.html
After you have copied and renamed the files you must replace all instances of EXAMPLE and example with the name of your storage engine. The easiest way to implement a new storage engine is to begin by copying and modifying the EXAMPLE storage ...
https://dev.mysql.com/doc/internals/en/dbug-sleep.html
However, the "Debug Sync Facility" should be able to replace all "Dbug Sleep" synchronization points. In cases where the normal server code does not have a block point at the critical place, one can insert an artificial synchronization point.
https://dev.mysql.com/doc/internals/en/delete-row.html
In sql_select it is used for removing duplicates, while in insert it is used for REPLACE calls. 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.
https://dev.mysql.com/doc/internals/en/format-description-event.html
Note added in MySQL 5.0.0 as replacement for START_EVENT_V3 Payload 2 binlog-version string[50] mysql-server version 4 create timestamp 1 event header length string[p] event type header lengths Fields binlog-version (2) -- version of this binlog ...
https://dev.mysql.com/doc/internals/en/load-data-infile-events.html
LOAD DATA INFILE is not written to the binary log like other statements. It is written as one or more events in a packed format, not as a cleartext statement in the binary log. The events indicate what options are present in the statement and how ...