将请求的数据存入mysql
时间: 2023-07-16 13:14:40 浏览: 84
好的,需要先安装 MySQL 数据库和 Python 的 MySQL 驱动程序。可以使用以下命令在 Python 中安装 MySQL 驱动程序:
```
pip install mysql-connector-python
```
接下来,可以使用以下代码将请求的数据存入 MySQL 数据库中:
```python
import mysql.connector
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword",
database="mydatabase"
)
mycursor = mydb.cursor()
sql = "INSERT INTO requests (request_data) VALUES (%s)"
val = ("request_data_here", )
mycursor.execute(sql, val)
mydb.commit()
print(mycursor.rowcount, "record inserted.")
```
在此代码中,需要将 `yourusername` 和 `yourpassword` 替换为您的 MySQL 用户名和密码,将 `mydatabase` 替换为您的数据库名称,将 `request_data_here` 替换为您要插入的请求数据。
此代码会将 `request_data_here` 插入名为 `requests` 的表中的 `request_data` 列中。如果需要插入更多列,请将 SQL 查询和 `val` 变量设置为所需的列和值。
阅读全文