python-mysqlHow do I close a MySQL connection using Python?
To close a MySQL connection using Python, you must use the close()
method of the MySQL connection object. This will close the connection to the MySQL server.
Example code
# Import the mysql.connector library/module
import mysql.connector
# Establish a MySQL connection
myconn = mysql.connector.connect(host="localhost", user="user", passwd="passwd", database="mydatabase")
# Close the connection
myconn.close()
The code above will close the connection to the MySQL server.
Code explanation
import mysql.connector
: This imports the mysql.connector library/module.myconn = mysql.connector.connect(host="localhost", user="user", passwd="passwd", database="mydatabase")
: This establishes a MySQL connection.myconn.close()
: This closes the connection to the MySQL server.
Helpful links
More of Python Mysql
- How can I connect Python to a MySQL database?
- How do I check the version of MySQL I am using with Python?
- How do I use a cursor to interact with a MySQL database in Python?
- How do I use a Python variable in a MySQL query?
- How do Python and MySQL compare to MariaDB?
- How do I download MySQL-Python 1.2.5 zip file?
- How can I use Python and MySQL to create a login system?
- How can I set a timeout for a MySQL connection in Python?
- How do I install a Python package from PyPI into a MySQL database?
- How do I use an online compiler to write Python code for a MySQL database?
See more codes...