写一段pyshon 连接MySQL数据库代码
时间: 2023-11-03 16:08:21 浏览: 64
python连接mysql数据库脚本工具
好的,以下是连接MySQL数据库的Python代码示例:
```python
import mysql.connector
# 连接数据库
mydb = mysql.connector.connect(
host="localhost",
user="username",
password="password",
database="database_name"
)
# 创建游标对象
mycursor = mydb.cursor()
# 执行SQL查询
mycursor.execute("SELECT * FROM mytable")
# 获取查询结果
myresult = mycursor.fetchall()
# 输出结果
for x in myresult:
print(x)
```
需要根据实际情况修改相应参数,比如 `host`、`user`、`password` 和 `database` 等。
阅读全文