Search Results
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-cmd-process-kill.html
Although still available, it is better to use the KILL SQL statement. The following two lines have the same effect: >>> cnx.cmd_process_kill(123) >>> cnx.cmd_query('KILL 123') .
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-disconnect.html
This method tries to send a QUIT command and close the socket. To shut down the connection without sending a QUIT command first, use shutdown().
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-get-rows.html
Syntax: cnx.get_rows(count=None) This method retrieves all or remaining rows of a query result set, returning a tuple containing the rows as sequences and the EOF packet information. The count argument can be used to obtain a given number of rows.
https://dev.mysql.com/doc/connector-python/en/connector-python-examples.html
These coding examples illustrate how to develop Python applications and scripts which connect to MySQL Server using MySQL Connector/Python.
https://dev.mysql.com/doc/connector-python/en/connector-python-tutorials.html
These tutorials illustrate how to develop Python applications and scripts that connect to a MySQL database server using MySQL Connector/Python.
https://dev.mysql.com/doc/internals/en/authentication-fails.html
Server indicates that client is not permitted to connect by sending ERR_Packet.
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/com-init-db.html
COM_INIT_DB: change the default schema of the connection Returns OK_Packet or ERR_Packet Payload 1 [02] COM_INIT_DB string[EOF] schema name Fields command (1) -- 0x02 COM_INIT_DB schema_name (string.EOF) -- name of the schema to change to Example ...
https://dev.mysql.com/doc/internals/en/com-query.html
COM_QUERY: A COM_QUERY is used to send the server a text-based query that is executed immediately. The server replies to a COM_QUERY packet with a COM_QUERY Response. The length of the query-string is a taken from the packet length - 1.
https://dev.mysql.com/doc/internals/en/create.html
Synopsis virtual int create ( name, form, info); const char * name ; TABLE * form ; HA_CREATE_INFO * info ; Description This is the create method. When create() is called you do not need to open the table. Also, the .frm file will have already been ...