Does the latest driver support for Django 4.2.9? I'm trying to use it with Firebird 3 and I get receive the following error. I did manual installation using git clone and installing it via CLI on Ubuntu server 22.04.
'firebird' isn't an available database backend or couldn't be imported. Check the above exception. To use one of the built-in backends, use 'django.db.backends.XXX', where XXX is one of:
'mysql', 'oracle', 'postgresql', 'sqlite3'
I tried it
'firebird_3': {
'ENGINE': 'firebird',
'NAME': '/mypath', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
'HOST': 'host', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '3050', # Set to empty string for default. Not used with sqlite3.
},
and
'firebird_3': {
'ENGINE': 'django.db.backends.firebird',
'NAME': '/mypath', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
'HOST': 'host', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '3050', # Set to empty string for default. Not used with sqlite3.
},
Does Django-firebird 5 does work with Django 4.2.9?
Does the latest driver support for Django 4.2.9? I'm trying to use it with Firebird 3 and I get receive the following error. I did manual installation using git clone and installing it via CLI on Ubuntu server 22.04.
'firebird' isn't an available database backend or couldn't be imported. Check the above exception. To use one of the built-in backends, use 'django.db.backends.XXX', where XXX is one of:
'mysql', 'oracle', 'postgresql', 'sqlite3'
I tried it
'firebird_3': {
'ENGINE': 'firebird',
'NAME': '/mypath', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
'HOST': 'host', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '3050', # Set to empty string for default. Not used with sqlite3.
},
and
'firebird_3': {
'ENGINE': 'django.db.backends.firebird',
'NAME': '/mypath', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
'HOST': 'host', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '3050', # Set to empty string for default. Not used with sqlite3.
},
Does Django-firebird 5 does work with Django 4.2.9?