django-firebird
django-firebird copied to clipboard
Firebird SQL backend for Django web framework
Pulled the latest version with the fix to rename the directory due to the firebird library conflict. Install from requirements.txt (once fixed, see)[https://github.com/maxirobaina/django-firebird/issues/149]. Change directory to `tests/test_main`, where `manage.py` lives...
With `pip install -r requirements.txt`, the following version conflict stops install. ```bash ERROR: Cannot install -r requirements.txt (line 3) and asgiref==3.2.3 because these package versions have conflicting dependencies. The conflict...
The firebird name collides with the module suggested as driver (firebird-driver) for Django>=3.2. All that was needed was installing under a different name (firebirdsql), changing the symbolic link in Django...
I have a legacy database table without a primary key. Firebird is using `RDB$DB_KEY` as alternative internal primary key. I tried to model it in Django. But when I execute...
$sudo isql $CREATE DATABASE 'api.fdb' page_size 8192 user 'SYSDBA' password '1234' default character set utf8 collation UNICODE_CI ; exit; $python manage.py migrate Operations to perform: Apply all migrations: admin, api,...
Hi, after fill login form and press login button in admin i get this error Internal Server Error: /api-admin/login/ Traceback (most recent call last): File "/home/user/env/lib/python3.9/site-packages/django/core/handlers/exception.py", line 34, in inner...
on django version 3.0.14 i get this $ python manage.py migrate Operations to perform: Apply all migrations: admin, auth, contenttypes, sessions, sites Running migrations: Applying contenttypes.0001_initial... OK Applying auth.0001_initial... OK...
BooleanField in firebird versions minors to 3 which doesn't suport boolean data type, Its was emulated with a smallint field with a check constraint to alow values just 1 or...
Bumps [django](https://github.com/django/django) from 5.0.8 to 5.0.9. Commits 8e68f93 [5.0.x] Bumped version for 5.0.9 release. 96d8404 [5.0.x] Fixed CVE-2024-45231 -- Avoided server error on password reset when e... 813de26 [5.0.x] Fixed...