PDF (US Ltr)
- 4.5Mb
PDF (A4)
- 4.5Mb
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 6.7.1, “Connector/Python Connection Arguments”.
A connection with the MySQL server can be established using
either the mysql.connector.connect()
method
or the mysql.connector.MySQLConnection()
class:
cnx = mysql.connector.connect(user='joe', database='test')
cnx = MySQLConnection(user='joe', database='test')
For descriptions of connection methods and properties, see Section 6.9.2, “connection.MySQLConnection Class”.