1. 程式人生 > >資料庫批插入---pymysql模組中executemany()的用法

資料庫批插入---pymysql模組中executemany()的用法

executemany()身為批量插入資料的方法,速度比execute()一條一條插入速度更快

con = pymysql.connect(host='192.168.0.136', user='root', passwd='oysm=K8cV6eldcv', db='lh', port=3306,charset='utf8')
if con:
    print("ok")
    cur = con.cursor()
    if cur:
        list1 = [('python','mysql','HTML'),('指令碼語言''資料庫''超文字標記語言')]
    # list1可以為列表或元組,但裡邊的元素必須為字典型
sql_entry = "INSERT IGNORE INTO test_entry_CJ VALUES(null,%s,%s,%s)" cur.executemany(sql_entry, list1) con.commit() print("已入庫") else: print("開啟遊標失敗!") cur.close() else: print("資料庫開啟失敗!") con.close()