Search Results
                    
                    
            https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysql-connector-connect.html
                                 This method sets up a connection, establishing a session with the MySQL server. If no arguments are given, it uses the already configured or default values. For a complete list of possible arguments, see Section 7.1, “Connector/Python Connection ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysql-connector-paramstyle.html
                                 This property is a string that indicates the Connector/Python default parameter style. 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysql-connector-threadsafety.html
                                 This property is an integer that indicates the supported level of thread safety provided by Connector/Python. 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysql-connector-version-info.html
                                 This property indicates the Connector/Python version as an array of version components. 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysql-connector-version.html
                                 This property indicates the Connector/Python version as a string. It is available as of Connector/Python 1.1.0. >>> mysql.connector.__version__ '1.1.0' ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-charset.html
                                 This property returns a string indicating which character set is used for the connection, whether or not it is connected. 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-cmd-ping.html
                                 Checks whether the connection to the server is working. This method is not to be used directly. Use ping() or is_connected() instead. Returns a dictionary containing the OK packet information. ...
                                            
                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-cmd-query.html
                                 Syntax: cnx.cmd_query(statement) This method sends the given statement to the MySQL server and returns a result. The returned dictionary contains information depending on what kind of query was executed. If the query is a SELECT statement, the ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-cmd-quit.html
                                 This method sends a QUIT command to the MySQL server, closing the current connection. Since there is no response from the MySQL server, the packet that was sent is returned.