实现:将场外衍生品账户资金状况汇总表.xlsx写入mytest.db数据库

import pandas as pd
import sqlite3
# sqlite3创建数据库
conn=sqlite3.connect("mytest.db")
cursor=conn.cursor()
# sql="create table students(name text,username text,id int)"
# cursor.execute(sql)
file_path=r"D:\workspeces\各项目\db_project\场外衍生品账户资金状况汇总表.xlsx"
data=pd.read_excel(file_path)
data.to_sql("场外衍生品账户资金状况汇总表",con=conn,if_exists='append',index=False)
cursor.close()
Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐