在博客 python scrapy爬取网站数据一 中采用mysql进行数据的保存,本篇对mysql操作做一个总结。
1、mysql python库安装
python能连接到mysql数据库需要使用库包 pymysql,安装该包有两种方式
1)命令行安装
pip3 install pymysql
2)pyCharm安装
一次点击”File—>settings—>Project—>Project interpreter”,点击 “+”,在搜索框中输入 pymysql,点击安装即可
2、数据库增删改查
import pymysql
class DBMySQL:
db = ''
cursor = ''
def openDB(self,host,port,username,password,dbschema):
# self.db = pymysql.connect(host="127.0.0.1", port=3306, user="root", password="zhl", database="sgyy",charset='utf8')
self.db = pymysql.connect(host=host, port=port, user=username, password=password, database=dbschema,charset = 'utf8')
self.cursor = self.db.cursor()
def search(self,sql):
try:
self.cursor.execute(sql)
items = self.cursor.fetchall()
return items
except:
print("查询出错,出错SQL:%s" % sql)
return []
# 插入、修改、删除
def execute(self,sql):
try:
self.cursor.execute(sql)
self.db.commit()
except:
print("执行出错,事务回滚,出错SQL:%s" % sql)
self.db.rollback()
def closeDB(self):
self.cursor.close()
self.db.close()