Search Results
                    
                    
            https://dev.mysql.com/doc/connector-python/en/connector-python-api-errors-warning.html
                                 This exception is used for reporting important warnings, however, Connector/Python does not use it. It is included to be compliant with the Python Database Specification v2.0 (PEP-249). Consider using either more strict Server SQL Modes or the ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-fieldtype.html
                                 This class provides all supported MySQL field or data types. They can be useful when dealing with raw data or defining your own converters. The field type is stored with every cursor in the description for each column. The following example shows ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysql-connector-apilevel.html
                                 This property is a string that indicates the supported DB API level. 
                                            
                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. ...