Skip to content

Instantly share code, notes, and snippets.

@renyi
Created February 16, 2011 08:55
Show Gist options
  • Save renyi/829058 to your computer and use it in GitHub Desktop.
Save renyi/829058 to your computer and use it in GitHub Desktop.
django - sqlite3 + firebird
DATABASES = {
'dbSqlite': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'data.db3',
'USER': '',
'PASSWORD': '',
'HOST': '',
'PORT': '',
},
'dbFirebird': {
'ENGINE': 'firebird',
'NAME': 'data.FDB',
'USER': 'USER',
'PASSWORD': 'PASSWORD',
'HOST': '127.0.0.1',
'PORT': '3050',
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment