connectorx is a fast read_sql python library, I can use it to connect Oracle by connection string conn = 'oracle://username:password@server:port/database'
, but How I can use tns entry name in connectorx, in cx_Oracle, it can be done like this: conn = cx_Oracle.connect(dsn="the_tns_entry_name")
. Is there similar way to do it in connectorx? Since in my tns entry, it doesn't need user id and password, seems like Windows Authentication. So I want to use it without specifying uid and pwd.
I am expecting to know how to use connectorx to link Oracle by tns entry name or by window authentication.