Reputation: 365
UserWarning: To use parallel implementation of `read_sql`, pass the sqlalchemyconnection string instead of <class 'sqlalchemy.engine.base.Engine'>.
I get gettign this error using this string
'oracle://username:password@server:1521/SID'
I also tried using cx_Oracle with the same error
I also tried passing the con string directly like :
OraTbl = pd.read_sql(colqry, 'oracle://username:password@{}:1521/SID'.format(server))
ORA-12170: TNS:Connect timeout occurred
Upvotes: 0
Views: 659