Reputation: 753
I'm running this code to connect to an Oracle database:
engine = sqlalchemy.create_engine("oracle://user:password@dsn")
engine.execute("select 1 from dual")
I get the error message: 'twophase' is an invalid keyword argument for this function
.
I'm using cx_oracle 6.0b1 and SQLAlchemy 1.10. When I was using cx_oracle 5.2.1 and SQLAlchemy 1.1.5 the code worked
Any idea what's causing this now?
Upvotes: 5
Views: 3256
Reputation: 753
Solved - this is an open issue with sqlalchemy, will be solved in the next release
Upvotes: 5