djfirebirdsql

Django database backend for firebird


Keywords
Django, Firebird, pyfirebirdsql
License
BSD-3-Clause
Install
pip install djfirebirdsql==0.3.0

Documentation

djfirebirdsql

Django firebird https://firebirdsql.org/ database backend.

I referrerd django-firebird database backend https://github.com/maxirobaina/django-firebird .

Requirements

Installation

$ pip install firebirdsql djfirebirdsql django==3.1

Database settings example

DATABASES = {
    'default': {
        'ENGINE': 'djfirebirdsql',
        'NAME': '/path/to/database.fdb',
        'HOST': ...,
        'USER': ...,
        'PASSWORD': ...,
    }
}