MySQL驱动是用于连接和操作MySQL数据库的程序库。它们提供了应用程序与MySQL数据库之间的接口,使得开发者可以通过编程语言来执行SQL查询、管理数据库等操作。
mysql-connector-python
。以下是一个使用Python的mysql-connector-python
驱动连接MySQL数据库的示例代码:
import mysql.connector
# 连接数据库
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword",
database="yourdatabase"
)
# 创建游标对象
mycursor = mydb.cursor()
# 执行查询
mycursor.execute("SELECT * FROM yourtable")
# 获取查询结果
myresult = mycursor.fetchall()
# 打印结果
for x in myresult:
print(x)
领取专属 10元无门槛券
手把手带您无忧上云