всем привет, вообщем каким-то образом надо заставить работать firbird с django. Для этого я поставил django 1.8.18, firebird2.5-classic, fdb и django-firebird. в setting.py отредактировал
DATABASES = {
'default': {
'ENGINE' : 'firebird',
'NAME' : os.path.join(BASE_DIR, 'test.fdb'),
'USER' : 'SYSDBA',
'PASSWORD' : 'test',
'HOST' : '127.0.0.1',
'PORT' : '3050',
}
}
import os, fdb, firebird
python3 manage.py makemigrations
django.core.exceptions.ImproperlyConfigured: 'firebird' isn't an available database backend.
Try using 'django.db.backends.XXX', where XXX is one of:
'mysql', 'oracle', 'postgresql', 'sqlite3'
Error was: cannot import name 'getLogger'