【Python】使用pymysql操作Mysql数据库
要使用pymysql
操作MySQL数据库,首先需要安装这个库,可以通过pip安装:
pip install pymysql
以下是一个使用pymysql
连接并查询MySQL数据库的基本示例:
import pymysql
# 数据库连接参数
db_params = {
'host': 'localhost',
'user': 'your_username',
'password': 'your_password',
'db': 'your_dbname',
'charset': 'utf8mb4'
}
# 连接数据库
connection = pymysql.connect(**db_params)
try:
# 创建cursor对象
with connection.cursor() as cursor:
# 执行SQL查询
cursor.execute("SELECT * FROM your_table")
# 获取查询结果
rows = cursor.fetchall()
for row in rows:
print(row)
finally:
# 关闭数据库连接
connection.close()
请确保替换localhost
, your_username
, your_password
, your_dbname
, 和your_table
为你的实际数据库信息。这段代码展示了如何连接到MySQL数据库,执行一个查询,并打印结果。记得在完成操作后关闭数据库连接。
评论已关闭