python连接mysql数据库
时间: 2023-08-31 22:09:32 浏览: 96
要在Python中连接MySQL数据库,你需要安装MySQL的Python驱动程序。使用以下命令安装`mysql-connector-python`驱动程序:
```
pip install mysql-connector-python
```
然后,使用以下代码连接到MySQL数据库:
```python
import mysql.connector
# 连接到数据库
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword",
database="yourdatabase"
)
# 创建一个游标对象
mycursor = mydb.cursor()
# 执行查询
mycursor.execute("SELECT * FROM yourtable")
# 返回结果
myresult = mycursor.fetchall()
# 打印结果
for x in myresult:
print(x)
```
在上面的代码中,你需要将`host`,`user`,`password`和`database`替换为你的MySQL数据库的实际值。然后,使用游标对象执行SQL查询,并使用`fetchall()`方法获取所有结果。最后,你可以遍历结果并进行处理。
阅读全文