Unable to send data from pandas (Dataframe) to oracle database.
engine = create_engine('oracle+cx_oracle://username:password@localhost')
dataset.to_sql(
name='table_name',
con=engine,
if_exists='append',
index=False
)