All Projects → maxirobaina → django-firebird

maxirobaina / django-firebird

Licence: BSD-3-Clause license
Firebird SQL backend for Django web framework

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to django-firebird

Sqitch
Sensible database change management
Stars: ✭ 2,320 (+3469.23%)
Mutual labels:  firebird
Linq2db
Linq to database provider.
Stars: ✭ 2,211 (+3301.54%)
Mutual labels:  firebird
Servicestack.ormlite
Fast, Simple, Typed ORM for .NET
Stars: ✭ 1,532 (+2256.92%)
Mutual labels:  firebird
Freesql
🦄 .NET orm, Mysql orm, Postgresql orm, SqlServer orm, Oracle orm, Sqlite orm, Firebird orm, 达梦 orm, 人大金仓 orm, 神通 orm, 翰高 orm, 南大通用 orm, Click house orm, MsAccess orm.
Stars: ✭ 3,077 (+4633.85%)
Mutual labels:  firebird
localization mapping
ROS nodes for outdoor SLAM on a ground robot
Stars: ✭ 39 (-40%)
Mutual labels:  firebird
T2TiERP-2-CSharp
T2Ti ERP 2.0 - C#
Stars: ✭ 33 (-49.23%)
Mutual labels:  firebird
yii2-firebird
Firebird connector for Yii2 framework
Stars: ✭ 23 (-64.62%)
Mutual labels:  firebird
vscode-db-explorer-firebird
Explore and run queries against your Firebird® databases without leaving VS Code.
Stars: ✭ 16 (-75.38%)
Mutual labels:  firebird
perl-dbd-firebird
Perl DBI driver for Firebird
Stars: ✭ 14 (-78.46%)
Mutual labels:  firebird
fdb
Firebird Driver for Python
Stars: ✭ 49 (-24.62%)
Mutual labels:  firebird
dbx4fb
dbExpress driver for Firebird
Stars: ✭ 22 (-66.15%)
Mutual labels:  firebird
bacula-utils
A collect of tools to use with bacula
Stars: ✭ 36 (-44.62%)
Mutual labels:  firebird
delphi-firebird-api
delphi-firebird-api is a translation of Interbase and later Firebird API from C to Pascal
Stars: ✭ 23 (-64.62%)
Mutual labels:  firebird
firebird-documentation
Firebird documentation
Stars: ✭ 28 (-56.92%)
Mutual labels:  firebird
laravel-adminer
Adminer database management tool for your Laravel application.
Stars: ✭ 45 (-30.77%)
Mutual labels:  firebird
NFC-e-Desktop-Delphi
NFC-e - Delphi
Stars: ✭ 24 (-63.08%)
Mutual labels:  firebird
fibplus
FibPlus Library for Delphi and C++Builder. Data access components for Firebird & Interbase.
Stars: ✭ 142 (+118.46%)
Mutual labels:  firebird
flamerobin
FlameRobin is a database administration tool for Firebird RDBMS. Our goal is to build a tool that is: lightweight (small footprint, fast execution) cross-platform (Linux, Windows, Mac OS X, FreeBSD) dependent only on other Open Source software
Stars: ✭ 181 (+178.46%)
Mutual labels:  firebird
rsfbclient
Rust Firebird Client
Stars: ✭ 64 (-1.54%)
Mutual labels:  firebird

django-firebird

Firebird SQL backend for django

Repo Note: The master branch is an in development version of django-firebird. This may be substantially different from the latest release of django-firebird

This version of django-firebird is working with fbd [1], therefore it will work only with firebird 2.x and later. The stable version corresponds with django 2.2 and live into stable/2.2.x branch. The current master branch of this repository is being developed under django 3.x. For previous Django stable version check the branch list of this repository. fbd is the official stable python-firebird driver, also it has support for python 3.

[1] http://pypi.python.org/pypi/fdb/

Requirements

Installation

Using pip

pip install django-firebird

From repository

git clone git://github.com/maxirobaina/django-firebird.git

cd django-firebird

sudo python setup.py install

Manual Installation

Instructions for Ubuntu/Debian I assume you have installed django from source with python setup.py install

cd /usr/local/lib/python3.8/dist-packages

sudo git clone git://github.com/maxirobaina/django-firebird.git

sudo ln -s django-firebird/firebird firebird

cd /usr/local/lib/python3.8/dist-packages/django/db/backends

sudo ln -s /usr/local/lib/python3.8/dist-packages/django-firebird/firebird

Configuration

Modify your setting.py

DATABASES = {
    'default': {
        'ENGINE' : 'django.db.backends.firebird',
        'NAME' : '/var/lib/firebird/3.0/data/django_firebird.fdb', # Path to database or db alias
        'USER' : 'SYSDBA',           # Your db user
        'PASSWORD' : '*****',    # db user password
        'HOST' : '127.0.0.1',        # Your host machine
        'PORT' : '3050',             # If is empty, use default 3050
        #'OPTIONS' : {'charset':'ISO8859_1'}
    }
}

Known bugs and issues

  • Some database migrations doesn't work by default. Sometimes is better make intermediate migrations for solve problems.
  • Some Query Expressions doesn't work by default. We need to make some workaround, ie: Use Cast().
  • Combined duration expressions need more research. No all combination of expressions works.

Contributing

Code and issues is in GitHub:

https://github.com/maxirobaina/django-firebird

We also have a mailing list:

http://groups.google.com/group/django-firebird-dev
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].