python-mysqlHow do I use a MySQL database with Python?
Using a MySQL database with Python involves using a library to make the connections. The most popular one is MySQL Connector/Python.
The following example code shows how to connect to a MySQL database and run a query:
import mysql.connector
mydb = mysql.connector.connect(
host="localhost",
user="user",
passwd="passwd",
database="mydatabase"
)
mycursor = mydb.cursor()
mycursor.execute("SELECT * FROM customers")
myresult = mycursor.fetchall()
for x in myresult:
print(x)
This code will output the contents of the customers table:
('John', 'Highway 21')
('Peter', 'Lowstreet 4')
('Amy', 'Apple st 652')
('Hannah', 'Mountain 21')
The code consists of the following parts:
import mysql.connector
- imports the MySQL Connector/Python library.mydb = mysql.connector.connect(...)
- connects to the MySQL database using the provided parameters.mycursor = mydb.cursor()
- creates a cursor object to execute queries.mycursor.execute("SELECT * FROM customers")
- executes the query to select all records from the customers table.myresult = mycursor.fetchall()
- fetches all the results from the query.for x in myresult: print(x)
- iterates through the results and prints them.
For more information, please refer to the MySQL Connector/Python documentation.
More of Python Mysql
- How can I connect Python to a MySQL database?
- How do I use Python to authenticate MySQL on Windows?
- How can I use Python to interact with a MySQL database using YAML?
- How do I use Python to query MySQL with multiple conditions?
- How do Python MySQL and SQLite compare in terms of performance and scalability?
- How do I use a Python variable in a MySQL query?
- How do I close a MySQL connection using Python?
- How can I convert data from a MySQL database to XML using Python?
- How do Python and MySQL compare to MariaDB?
- How can I use Python and MySQL to create a login system?
See more codes...