Skip to content

Instantly share code, notes, and snippets.

@acatejr
Last active August 29, 2015 14:04
Show Gist options
  • Save acatejr/fc0f8214c6d624206344 to your computer and use it in GitHub Desktop.
Save acatejr/fc0f8214c6d624206344 to your computer and use it in GitHub Desktop.
Django Oracle DB Settings Example
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.oracle',
'NAME': 'XE', # The instance name
'USER': 'DJORACLE', # User name
'PASSWORD': 'password', # User's password
'HOST': '127.0.0.1', # Hosting server
'PORT': '1521',
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment