Python链接数据库
时间: 2024-03-27 13:37:14 浏览: 63
Python数据库的链接
在Python中链接数据库,需要使用相应的数据库驱动和Python的DB API接口。以下是使用Python链接MySQL数据库的示例代码:
```python
import mysql.connector
# 创建数据库连接
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword",
database="yourdatabase"
)
# 创建游标对象
mycursor = mydb.cursor()
# 执行SQL语句
mycursor.execute("SELECT * FROM yourtable")
# 获取查询结果
myresult = mycursor.fetchall()
# 输出结果
for x in myresult:
print(x)
```
需要先安装mysql-connector-python库,使用pip install mysql-connector-python命令即可安装。其他数据库的链接方式类似,只需要使用对应的数据库驱动和相应的链接参数即可。
阅读全文