DATABASES = {
'default': {
'ENGINE': 'django.db.backends.oracle',
'NAME': '(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = orcl)))', #the name for the entry in tnsnames.ora
'USER': 'auth',
'PASSWORD': 'ABCD',
}
}I tried adding another section to this setup but I am not sure how to reference it.
- Shekar