CSV to Oracle via Odo and SQL Alchemy
问题 I have this code that sends CSVs to Oracle but it's slower than molasses in January. I'd like to use odo but the documentation is scarce for this exact type of situation (data from CSV to Oracle). I'm not married to Pandas, so if it's better to not use it than that's fine with me. import pandas as pd import pandas.io.sql as psql from sqlalchemy import create_engine import cx_Oracle as cx engine = create_engine('oracle+cx_oracle://schema:'+pwd+'@server:port/service_name' ,encoding='latin1')