How to connect to an oracle database without password using an oracle wallet ?
here my lines with user and password:
import Oracle
username=“test”
password=“test”
svc = “MYDATABASE”
conn = Oracle.Connection(username, password, svc)
This works. But what do I have to code when using an oracle wallet ?