Python存储数据到MySQL数据库中涉及几个基础概念:
pip
安装MySQL的Python驱动,如mysql-connector-python
或PyMySQL
。以下是一个简单的示例,展示如何使用Python将数据存储到MySQL数据库中:
import mysql.connector
# 连接到MySQL数据库
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword",
database="yourdatabase"
)
# 创建一个游标对象
mycursor = mydb.cursor()
# 定义要插入的数据
sql = "INSERT INTO customers (name, address) VALUES (%s, %s)"
val = ("John", "Highway 21")
# 执行SQL语句
mycursor.execute(sql, val)
# 提交事务
mydb.commit()
print(mycursor.rowcount, "record inserted.")
领取专属 10元无门槛券
手把手带您无忧上云