Use Python to manipulate MySQL database (BULK insert data)

Source: Internet
Author: User
Tags bulk insert
#!/usr/bin/env python#-*-coding:utf-8-*-import mysqldb# Establish Connection conn = MySQLdb.connect (host= ' 127.0.0.1 ', user= ' root ', Passwd= ' 1qaz#edc ', db= ' test_db ') cur = conn.cursor () #对数据进行操作li = [(' Tanzhenx ', ' Shaoguan '), (' Huangmengdie ', ' Shaoguan ') ] #定义一个列表, the list contains multiple tuples, and so on, the data in each tuple is inserted in bulk cur.executemany (' INSERT into user (name,address) VALUES (%s,%s) ', Li) # BULK INSERT Data Conn.commit () #提交请求, otherwise the data is not written to the database # Close database connection cur.close () Conn.close ()


This article is from the "Fa&it-Q Group: 223843163" blog, please be sure to keep this source http://freshair.blog.51cto.com/8272891/1876288

Use Python to manipulate MySQL database (BULK insert data)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.