Search Results
https://dev.mysql.com/doc/connector-python/en/connector-python-example-cursor-select.html
In the preceding example, we store the SELECT statement in the variable query. The following example shows how to query data using a cursor created using the connection's cursor() method. The task is to select all employees hired in the year 1999 ...
https://dev.mysql.com/doc/connector-python/en/connector-python-tutorial-cursorbuffered.html
The following example script gives a long-overdue 15% raise effective tomorrow to all employees who joined in the year 2000 and are still with the company. (A buffered cursor fetches and buffers the rows of a result set after executing a query; see ...
https://dev.mysql.com/doc/internals/en/binlog-version.html
Depending on the MySQL Version that created the binlog the format is slightly different.
https://dev.mysql.com/doc/internals/en/client-directory.html
The client library includes mysql.cc (the source of the mysql executable) and other utilities. Most of the utilities are mentioned in the MySQL Reference Manual. Generally these are standalone C programs which one runs in "client mode", that is, ...
https://dev.mysql.com/doc/internals/en/com-field-list.html
Note As of MySQL 5.7.11, COM_FIELD_LIST is deprecated and will be removed in a future version of MySQL. COM_FIELD_LIST: get the column definitions of a table Payload 1 [04] COM_FIELD_LIST string[NUL] table string[EOF] field wildcard Returns ...
https://dev.mysql.com/doc/internals/en/com-process-info.html
Note As of MySQL 5.7.11, COM_PROCESS_INFO is deprecated and will be removed in a future version of MySQL. COM_PROCESS_INFO: get a list of active threads Returns a ProtocolText::Resultset or ERR_Packet Payload 1 [0a] COM_PROCCESS_INFO .
https://dev.mysql.com/doc/internals/en/com-process-kill.html
Note As of MySQL 5.7.11, COM_PROCESS_KILL is deprecated and will be removed in a future version of MySQL. COM_PROCESS_KILL: ask the server to terminate a connection Returns OK_Packet or ERR_Packet Payload 1 [0c] COM_PROCCESS_KILL 4 connection id .
https://dev.mysql.com/doc/internals/en/com-shutdown.html
Note COM_SHUTDOWN is deprecated as of MySQL 5.7.9 and removed in MySQL 8.0.
https://dev.mysql.com/doc/internals/en/com-stmt-prepare-response.html
17 00 00 02 03 64 65 66 00 00 00 01 3f 00 0c 3f .....def....?..? 00 00 00 00 00 fd 80 00 00 00 00|17 00 00 03 03 ................ 64 65 66 00 00 00 01 3f 00 0c 3f 00 00 00 00 00 def....?..?..... fd 80 00 00 00 00|05 00 00 04 fe 00 00 02 00|1a ...
https://dev.mysql.com/doc/internals/en/com-stmt-send-long-data.html
COM_STMT_SEND_LONG_DATA: COM_STMT_SEND_LONG_DATA direction: client -> server response: none payload: 1 [18] COM_STMT_SEND_LONG_DATA 4 statement-id 2 param-id n data COM_STMT_SEND_LONG_DATA has to be sent before COM_STMT_EXECUTE.