写一个python3 连接MySQL数据库脚本
时间: 2023-11-03 08:45:14 浏览: 130
python链接mysql脚本
当然可以!以下是一个简单的示例代码,用于使用 Python 3 连接到 MySQL 数据库:
```python
import mysql.connector
# 连接到 MySQL 数据库
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword",
database="yourdatabase"
)
# 执行一个 SQL 查询
mycursor = mydb.cursor()
mycursor.execute("SELECT * FROM yourtable")
# 获取结果
result = mycursor.fetchall()
for row in result:
print(row)
# 关闭数据库连接
mydb.close()
```
请确保将以下值替换为您自己的数据库连接信息:
- `localhost`:数据库主机名
- `yourusername`:数据库用户名
- `yourpassword`:数据库密码
- `yourdatabase`:要连接的数据库名称
- `yourtable`:要查询的表名
这只是一个简单的示例,您可以根据自己的需求进行修改和扩展。
阅读全文