I run this code to connect to an Oracle database:
engine = sqlalchemy.create_engine("oracle://user:password@dsn")
engine.execute("select 1 from dual")
I get an error: 'twophase' is an invalid keyword argument for this function.
I am using cx_oracle 6.0b1 and SQLAlchemy 1.10. When I used cx_oracle 5.2.1 and SQLAlchemy 1.1.5, the code worked
Any idea what causes this now?
source
share