首页 > 代码库 > 用Python向MySQL数据库插入数据

用Python向MySQL数据库插入数据

最近一直在学习MySQL数据库,很感兴趣。这次我做了一个简单的尝试,使用Python3.4与MySQL数据库进行交互,将一份从雪球网上下载的某股票数据上传至MySQL数据库。仅为初学者提供参考,高手请不要见笑。

代码已上传至github,欢迎关注:

https://github.com/JoshuaHe2015/Python_Code/blob/master/MySQL_test.py

 1 import pymysql 2 f = open(rD:\Data\SZ000839.csv)# Load the csv 3 header = True 4 conn = pymysql.connect(localhost,root,password,database) 5 cur = conn.cursor() 6  7 for line in f: 8     if header: 9         header = False # Skip the header10     else:11         data = http://www.mamicode.com/line.replace(\",‘‘).replace(\n,‘‘).split(,)12         cur.execute("INSERT INTO SZ000839(symbol,_date,_open,high,low,_close,volume) VALUES (‘%s‘,‘%s‘,‘%s‘,‘%s‘,‘%s‘,‘%s‘,‘%s‘)" % tuple(data))13 14 conn.commit()# Commit the transaction15 f.close() # Don‘t forget to close all of these sources16 cur.close()17 conn.close()18 print(finished!)

 

用Python向MySQL数据库插入数据