python DataFrame插入数据到Oracle用to_sql插入数据很慢问题

亲测好用,看代码

from sqlalchemy import create_engine,types
engine = create_engine('oracle://ycr:[email protected]:1521/stock')
#设置写入类型,不然默认是用CLOB类型写入,内置的类型转换很慢,小量数据无所谓
dtyp = {c:types.VARCHAR(df[c].str.len().max()) for c in df.columns[df.dtypes == 'object'].tolist()}
#不设置to_sql的方法,设置写入类型
df.to_sql(t_name, con=engine, if_exists='append', index=False, index_label=None, dtype=dtyp)
#关闭引擎
engine.dispose()

你可能感兴趣的:(工具类)