Django Multi Database
January 20, 2011
Django allows you to connect to multiple databases.
Definition
Replace the existing database connection details in settings.py with
DATABASES = { 'default' : { 'NAME': 'wamdev', 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'USER': 'user', …


