Python mysql-表中数据的大量插入
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python mysql-表中数据的大量插入相关的知识,希望对你有一定的参考价值。
2017-09-06 23:28:26
import pymysql db = pymysql.connect("localhost","root","hy1102","TESTDB",charset=‘utf8‘) cursor = db.cursor() list=[] with open("E:\\ee.txt","r") as f: for line in f: ls = line.split() for i in range(0,len(ls)): if ls[i] == "NULL": ls[i] = None list.append(ls) f.close() sql ="""insert into shohin VALUES (%s,%s,%s,%s,%s,%s)""" cursor.executemany(sql,list) db.commit() db.close()
注意事项:
- charset=‘utf8‘ : 在有中文字符时必须写上
- 使用excutemany(sql,list),可以一次处理大量的数据,且效率颇高。文件中的NULL目前采用的方式是手动替换成None
- list中的数据可以是list也可以是tuple
- excutemany中sql的替换符必须是%s
以上是关于Python mysql-表中数据的大量插入的主要内容,如果未能解决你的问题,请参考以下文章
通过 python 将 csv 文件插入 MySQL。运行但数据未填充到表中
插入大量数据时出现 mod_python/MySQL 错误:“OperationalError: (2006, 'MySQL server has gone away')”