爬虫案列10:python 连接mysql

import pymysql

# 打开数据库连接
db = pymysql.connect(host='localhost',
                     user='root',
                     password='root',
                     database='pikachu',
                     port=3306
                     )

# 使用 cursor() 方法创建一个游标对象 cursor
cursor = db.cursor()

# 使用 execute()  方法执行 SQL 查询
sql = "SELECT VERSION()"
cursor.execute(sql)

# 使用 fetchone() 方法获取单条数据.
data = cursor.fetchone()

print("Database version : %s " % data)

# 关闭数据库连接
db.close()

执行成功之后会输出数据库的版本

posted @ 2023-04-11 15:55  shuxi_520  阅读(21)  评论(0编辑  收藏  举报