用Python向MySQL数据库插入数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用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(r‘D:\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 header 10 else: 11 data = 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 transaction 15 f.close() # Don‘t forget to close all of these sources 16 cur.close() 17 conn.close() 18 print(‘finished!‘)
以上是关于用Python向MySQL数据库插入数据的主要内容,如果未能解决你的问题,请参考以下文章