Search Results
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/connector-python/en/connector-python-api-mysqlcursorprepared.html
In Connector/Python, there are two ways to create a cursor that enables execution of prepared statements using the binary protocol. import mysql.connector cnx = mysql.connector.connect(database='employees') cursor = cnx.cursor(prepared=True) ...In ...
https://dev.mysql.com/doc/internals/en/binary-log-versions.html
create_timestamp The creation timestamp, if nonzero, is the time in seconds when this event was created; it indicates the moment when the binary log was created. Note: In practice, the creation timestamp field should be considered reserved for ...
https://dev.mysql.com/doc/internals/en/com-stmt-prepare.html
COM_STMT_PREPARE creates a prepared statement from the passed query string. The server returns a COM_STMT_PREPARE Response which contains a statement-id which is used to identify the prepared statement.
https://dev.mysql.com/doc/internals/en/custom-engine-overview.html
For example: If three connections all start working with the same table, three handler instances will need to be created. Once a handler instance is created, the MySQL server issues commands to the handler to perform data storage and retrieval tasks ... The MySQL server is built in a modular fashion: The storage engines manage data storage and index management for ...
https://dev.mysql.com/doc/internals/en/delete-table.html
You will need to remove any files you have created at this point. Only used during create if the table_flagHA_DROP_BEFORE_CREATE was specified for the storage engine. Synopsis virtual int delete_table ( name); const char * name ; Description This is ...
https://dev.mysql.com/doc/internals/en/event-header-fields.html
The ID of the mysqld server that originally created the event. The event is sent to M2, which executes it and writes it to its binary log; the event is still written with server ID 1 because that is the ID of the server that originally created the ...The value of this constant is 13 in MySQL 3.23 (v1 format), and 19 in MySQL 4.0 and up (v3 format and ...
https://dev.mysql.com/doc/internals/en/implementing-rnd-next-method.html
In each format, the columns appear in the order in which they were defined by the CREATE TABLE statement. After the table is initialized, the MySQL server will call the handler's [custom-engine.html#custom-engine-api-reference-rnd_next rnd_next()] ...
https://dev.mysql.com/doc/internals/en/initialization-callback.html
The initialization callback is registered together with the procedure name in the sql_procs array in procedure.cc.
https://dev.mysql.com/doc/internals/en/load-data-infile-events.html
Several new event types were introduced: Create_file_log_event (type code CREATE_FILE_EVENT = 8), Append_block_log_event (type code APPEND_BLOCK_EVENT = 9), Execute_load_log_event (type code EXEC_LOAD_EVENT = 10), and Delete_file_log_event (type ...