Make OracleDbHelper.get_sqlalchemy_connection_string
use oracle+oracledb
instead of oracle
#215
Closed
1 task done
Summary
When
etlhelper
was updated tov1.0.0
, one of the major changes was replacing the use ofcx_Oracle
withoracledb
. This is great, but the methodOracleDbHelper.get_sqlalchemy_connection_string
was not updated to reflect this change.On this line, the string begins with
oracle://
, which will default tooracle+cx_oracle://
, which is now deprecated inetlhelper
.Solution
To explicitly use
oracledb
, the connection string must start withoracle+oracledb://
instead. This was found from astackoverflow
post here, with a link to the official documentation on this being here.Acceptance Criteria
oracle://
is replaced withoracle+oracledb://
in the methodOracleDbHelper.get_sqlalchemy_connection_string
The text was updated successfully, but these errors were encountered: