Oracle connection string with at sign @ in pasword
问题 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 Oracle with this settings DATABASES = { 'default': { 'ENGINE': 'django.db.backends.oracle', 'NAME': 'Services', 'USER':