首页 > 代码库 > 用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(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 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数据库插入数据
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。