python连接MySQL抛接口
时间: 2024-06-16 14:05:20 浏览: 100
Python连接MYSQL
5星 · 资源好评率100%
在Python中连接MySQL数据库可以使用`mysql-connector-python`库来实现。下面是一个简单的示例代码:
```python
import mysql.connector
# 连接数据库
cnx = mysql.connector.connect(
host="localhost",
user="username",
password="password",
database="database_name"
)
# 创建游标对象
cursor = cnx.cursor()
# 执行SQL查询
query = "SELECT * FROM table_name"
cursor.execute(query)
# 获取查询结果
result = cursor.fetchall()
# 遍历结果
for row in result:
print(row)
# 关闭游标和连接
cursor.close()
cnx.close()
```
上述代码中,你需要将`host`、`user`、`password`和`database`替换为你自己的数据库连接信息。然后使用`mysql.connector.connect()`方法连接数据库,创建游标对象,执行SQL查询,并获取查询结果。
阅读全文