django-oracle

Oracle connection string with at sign @ in pasword

Oracle connection string with at sign @ in pasword Question: I have a code that connect to oracle using connection string: conn = cx_Oracle.connect(‘username/password@server:port/services’) But the problem is my password contain @ character so it may become conn = cx_Oracle.connect(‘username/p@ssword@server:port/services’) it return DatabaseError: ORA-12154: TNS:could not resolve the connect identifier specified I use Django with …

Total answers: 5