Matthew Deakyne
Matthew Deakyne
Thanks for the quick response! I'll review oracle-rs, and try to get connect directly using r2d2. It's taken a bit to get things working in Python using SQLAlchemy and pandas,...
Good morning, This is going to be long : but Oracle connections are historically problematic for me - and I wanted to run through all possibilities and do a fair...
Sorry for the quick follow up, but here is the working connection string! ```python con_str = f'{host}:1521/{service_name}' test = cx.read_sql(f'oracle://{user}:{pwd}@{con_str}', query=query) test # WORKS! ``` This works in the alpha...