基本思路:
①读sql文件,整理出sql语句;
②执行sql语句。
简单代码如下:
# db_cursor→由db_cursor()创建,sql_file→sql文件
def read_SQL(self, db_cursor, sql_file):
# 打开文件fp
fp = open(sql_file, encoding='utf8')
# 读文件
file = fp.readlines()
#sql语句集合(如数据很多,也可以用边提取sql边执行)
sqls = ''
#提取sql过程(根据具体的sql文件写规则,这里是phpMyAdmin导出的sql文件)
for i in file:
i = i.strip()
if i and i[0]!='-' and i[0]!='/':
if i.endswith(";"):
i = i+'\n'
sqls += i
# 执行sql
sqls = sqls.strip()
for sql in sqls.split(";\n"):
print(sql)
self.db_execute(db_cursor, sql)
# 关闭fp
fp.close()