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 query MySQL with multiple conditions?
- How do I use Python to authenticate MySQL on Windows?
- How do I access MySQL using Python?
- How do I use a Python MySQL refresh cursor?
- How can I use Python and MySQL to generate a PDF?
- How do I use Python to update multiple columns in a MySQL database?
- How can I use Python to interact with a MySQL database using YAML?
- How can I use Python and MySQL to create a login system?
- How can I connect Python and MySQL?
See more codes...