django-firebird icon indicating copy to clipboard operation
django-firebird copied to clipboard

Firebird SQL backend for Django web framework

Results 19 django-firebird issues
Sort by recently updated
recently updated
newest added

Since the last update of django-firebird at master branch, the old python driver fdb was replaced by the new and official firebird driver **[1]** which just work with Firebird 3+,...

Hello developers! I tried migrating my app from django2 version to django3 version and got some errors on BOOL fields from db. Error is looks like this: `Error in formatting:...

bug
django 3

Hi, Thank you for this library. **[firebird-driver](https://github.com/FirebirdSQL/python3-driver)** (last commit 21 days ago) is the successor and replacing **[fdb](https://github.com/FirebirdSQL/fdb)** (last commit on Sep 30, 2021). It is also written on [Firebird...

In order to enable temporal subtraction you must set the supports_temporal_subtraction database feature flag to True and implement the DatabaseOperations.subtract_temporals() method. This method should return the SQL and parameters required...

enhancement

Implement DatabaseOperations.sequence_reset_sql using ALTER SEQUENCE statement.

enhancement

I have dumped data from a Django server and I want to load a fixture in my new Django server with firebird DB. (Django ver. 2.0.13) example command: ``` python...

Hi, I have the following database schema: ``` CREATE TABLE AGDE_ETAB ( ETAB_ID D_UUID, DENOMINATION VARCHAR(255) NOT NULL, VOIE_ID D_UUID, CONSTRAINT AGDE_ETAB_PK PRIMARY KEY (ETAB_ID), ) CREATE TABLE AGDE_VOIE (...

Evaluante replace plain sql schema introspection by fdb schema api. http://pythonhosted.org//fdb/usage-guide.html#working-with-database-schema Working with database schema Description of database objects like tables, views, stored procedures, triggers or UDF functions that represent...

enhancement
firebird3

The flush command doesn't work. It fails when try to clear a table with Foreign key references.