python怎么接入mysql
时间: 2024-02-15 08:58:33 浏览: 149
使用Python接入MySQL需要使用Python的MySQL驱动程序,例如MySQL Connector/Python、PyMySQL等。下面是一个使用MySQL Connector/Python的示例代码:
```python
# 导入MySQL Connector/Python模块
import mysql.connector
# 连接MySQL数据库
cnx = mysql.connector.connect(user='username', password='password',
host='hostname',
database='database_name')
# 创建游标对象
cursor = cnx.cursor()
# 执行SQL查询
query = ("SELECT * FROM table_name")
cursor.execute(query)
# 处理查询结果
for (column1, column2, column3) in cursor:
print("{} - {} - {}".format(column1, column2, column3))
# 关闭游标和数据库连接
cursor.close()
cnx.close()
```
在上面的代码中,需要将`username`、`password`、`hostname`和`database_name`替换为实际的值。然后使用`mysql.connector.connect()`方法连接到MySQL数据库,创建游标对象并执行SQL查询。最后,使用`cursor`对象处理查询结果并关闭游标和数据库连接。
阅读全文