python mysql curros.executemany 批量添加

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python mysql curros.executemany 批量添加相关的知识,希望对你有一定的参考价值。

#添加的表结构字段分辨是(id,title,summary,visits,accountName,grabTime)

#其中id,是int自增主键,在添加操作的时候,不需要对id进行操作

conn = mysql.connector.connect(user=‘root‘,password=‘‘,database=‘newsdb‘,host=‘127.0.0.1‘, port=‘3306‘)
cursor = conn.cursor()

#此处Sql语句必须指定添加的字段名称!!!!!
sql = "INSERT INTO news(title,summary,visits,accountName,grabTime) VALUES(%s,%s,%s,%s,%s)"

try:
     cursor.executemany(sql,newsObj_tupeList)
except Exception as e:
  conn.rollback()
      print("执行MySQL: %s 时出错:%s" % (sql, e))     

conn.commit()
cursor.close()
conn.close()

 

#批量添加数据,!!!!!数据格式必须list[tuple(),tuple(),tuple()]  或者tuple(tuple(),tuple(),tuple())

list = [(‘666‘,‘666‘,‘666‘,‘666‘,‘666‘),(‘777‘,‘222‘,‘333‘,‘444‘,‘555‘)]
weixinDb = Operation_WeiXinDb()
weixinDb.Insert_News(list)
       












以上是关于python mysql curros.executemany 批量添加的主要内容,如果未能解决你的问题,请参考以下文章

python操作mysql

python 操作mysql 数据库 安装 MySQL-python

python python操作MySQL

Python mysql

python连接MySQL

python简单操作mysql