The new English Firebird 3.0 Language Reference is based in part on the Russian Firebird 3.0 Language Reference, but is not a direct translation (though we thankfully copied parts of it). Work has also been started on the Firebird 4.0 Language Reference.
Thursday, February 25, 2021
Firebird 3.0 Language Reference (English) Released
The new English Firebird 3.0 Language Reference is based in part on the Russian Firebird 3.0 Language Reference, but is not a direct translation (though we thankfully copied parts of it). Work has also been started on the Firebird 4.0 Language Reference.
Saturday, February 20, 2021
New version of RedExpert 2021.02 has been released
Thursday, February 18, 2021
Firebird 4.0 RC1 Docker image based on Debian buster is released
Tuesday, February 09, 2021
Interesting discussion on HN : LibreOffice tells businesses: Get off Community version, you are hurting devs
Interesting discussion on HackerNews : LibreOffice tells businesses: Get off Community version, you are hurting devs
Firebird 4.0 Release Candidate 1 is available for testing
Firebird Project announces the first Release Candidate of Firebird 4.0, the next major version of the Firebird relational database, which is now available for testing on Windows and Linux platforms.
This Release Candidate demonstrates the complete set of features and improvements developed for the new release. Release Candidates are generally considered stable enough and may be recommended for testing in "almost-production" environments. Our users are appreciated giving it a try and providing feedback to the development mailing list. Apparent bugs can be reported directly to the bugtracker.
Please read the Release Notes carefully before installing and testing this Release Candidate.
Wednesday, January 13, 2021
Firebird Embedded in a sandboxed MacOS App
Wednesday, December 23, 2020
Firebird php driver status for Firebird Advent 2020 ⛄
Firebird php driver status for Firebird Advent 2020 ⛄
https://qiita.com/advent-calendar/2020/firebird
A new version of the Firebird PHP driver was recently released. This version supports booleans values. Precompiled binaries for PHP 7.3 , 7.4 and 8.0 are available at the download section.
The driver is marked as 1.1.0 stable . Please report any problems to the tracker at https://github.com/FirebirdSQL/php-firebird/issues.
See also:
Firebird PHP driver on Github
Firebird PHP driver download
Monday, December 21, 2020
Firebird LibreOffice status
Firebird LibreOffice status for Firebird Advent 2020 ⛄
https://qiita.com/advent-calendar/2020/firebird
Saturday, December 19, 2020
Firebird Rust driver status
Firebird rust driver status for Firebird Advent 2020 ⛄
https://qiita.com/advent-calendar/2020/firebird
Last version released is 0.13.0 with a few changes.
Rust firebird github repository is located here
https://github.com/fernandobatels/rsfbclient
Crates page is here
https://crates.io/crates/rsfbclient
Docs are located here
https://docs.rs/rsfbclient/0.13.0/rsfbclient/
More examples in the github repository
https://github.com/fernandobatels/rsfbclient/tree/master/examples
Cool features : connection to the firebird db can be made in embeeded mode if is on the same machine
also using the libfbclient to a remote server or using the pure rust implementation 😀
https://docs.rs/rsfbclient/0.13.0/rsfbclient/builders/struct.NativeConnectionBuilder.html
Another interesting project is rbfbclient : A new version of Firebird Extension Library for Ruby using Rust instead of C for binding of firebird API.
Thursday, December 17, 2020
Firebird SQLAlchemy support
https://qiita.com/advent-calendar/2020/firebird
Current SQLAlchemy release 1.3.20 supports firebird out of the box
https://docs.sqlalchemy.org/en/13/dialects/firebird.html
In the future the driver is moved outside of SQLAlchemy repository in this place
https://github.com/pauldex/sqlalchemy-firebird
so it will be installed in the future releases with :
pip install sqlalchemy-firebird
After sqlalchemy and driver install you can follow the official tutorial or something similar using the firebird dialect
https://overiq.com/sqlalchemy-101/installing-sqlalchemy-and-connecting-to-database/
Tuesday, December 15, 2020
django-firebird driver status
Firebird django-firebird driver status for Firebird Advent 2020
https://qiita.com/advent-calendar/2020/firebird
django-firebird pre released 2.2a1 version with support for Firebird 3 and Django 2.2.x LTS (That will be supported until 2022 according to the roadmap)
Thanks to this pull request #111.
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.0.x.DJFirebirdSQL is a Django firebird database backend using pure python driver pyfirebirdsql (Work in progress)
https://github.com/nakagami/djfirebirdsql
Requirements: Django 3.1 and Firebird 4.0 beta1 (Firebird 3.0 minimum version required)
Saturday, December 12, 2020
Firebird python3 driver status
Firebird python3 driver status for Firebird Advent 2020
https://qiita.com/advent-calendar/2020/firebird
The firebird-driver package provides driver for Python 3.8+ and Firebird 3+. This driver uses new Firebird OO API provided by fbclient library. You can download it or install directly from Python Package Index.
To use the driver you can start with the Getting Started from documentation area
A few more examples are in Usage Guide from documentation area
Please note, that his new driver requires Firebird 3+ and Python 3.8+.This “high” base line was chosen deliberately, to use all new features
available from latest Firebird & Python releases without constraints and
limits that backward compatibility would require. Internally, the driver
uses new client API based on interfaces introduced by Firebird 3. This
new API has many limits raised (like statement sizes, blob sizes etc.)
or completely lifted (like number of databases participating in
distributed transaction), and provides access to new Firebird features
(like scrollable cursors).
The 1.0 release supports all key driver features you know
from FDB (passes all tests for FDB features)
New features in comparison to FDB:
– scrollable cursors
– type hints everywhere
– new FB client API instead old one
– enhanced Enums and Flags classes instead isc_* constants
– better and more rich support for Firebird services
The driver has also much cleaner structure and namespaces, and less core
code than FDB, and although it was not measured yet, it should also
perform better. However, the driver API is not 100% backward compatible
(with FDB).
The driver uses firebird-base package, which is a collection of modules that have general applicability, like extended configuration, context-driven logging and trace/audit, hooks, work with structured binary buffers, extended data structures etc. The driver uses almost all features provided by "base" package, but specifically the use of hook mechanism and context-driven logging and trace/audit are potentially the most valuable improvements.
The firebird-lib package provides extensions to the firebird-driver.
This package provides modules for:
Work with Firebird database schema.
Work with Firebird monitoring tables.
Processing output from gstat Firebird utility.
Processing Firebird server log.
Processing output from Firebird server trace & audit sessions.
Friday, December 11, 2020
Firebird high-level native client for Node.js / TypeScript status
Firebird high-level native client for Node.js / TypeScript status status for Firebird Advent 2020
https://qiita.com/advent-calendar/2020/firebird
To use the driver you can start with the readme from npm/github
https://www.npmjs.com/package/node-firebird-driver-native
A few more examples are in the packages/node-firebird-driver/src/test directory
We have seen several releases with a few features and changes :2.1.1 (November, 22, 2020)
driver-native
- Feature #62 - Change value of getDefaultLibraryFilename in MacOS.
- Feature #63 - Make getMaster return OS error when failing to load the client library.
- Fix #69 - Subsequent use of Statement::execute* methods may send incorrect value of input parameters.
driver
Thursday, December 10, 2020
node-firebird status for Firebird Advent 2020
node-firebird status for Firebird Advent 2020
https://qiita.com/advent-calendar/2020/firebird
This year we have seen several releases with a few features and changes :
Version 0.9.3 Changes :
Thanks to @jucapablanca
Correct issues and new implementations #238
Tuesday, December 08, 2020
FirebirdWebAdmin status for Firebird Advent 2020
FirebirdWebAdmin status for Firebird Advent 2020
https://qiita.com/advent-calendar/2020/firebird
This year we have seen one release with a few features and small changes in master branch
Version 3.4.1 (27.02.2020) Changes :
- [enhancement:] Adjust "Accessories" page UI.
- [enhancement:] Remove Crowdin badge from footer.
- [enhancement:] Update debug_funcs.inc.php
- [bugfix:] Don't warn if "isql" is "isql-fb" on Linux
- [typo:] Correct typo: firebirid -> firebird
- [bugfix] fix sql create database
- [enhancement:] Add Character Sets
- [enhancement:] Quiet PHP7.2 deprecation warning …
- [enhancement:] Further create_function refactor
- [enhancement:] Remove unused/outdated markableFbwaTable.
- [enhancement:] cosmetics
One option to install 3.4.1 is now using a docker image that will pull the requirements (apache/php)
https://hub.docker.com/r/marianaldenhoevel/firebirdwebadmin
Thursday, October 22, 2020
Firebird 3.0.7 sub-release is available
Firebird Project is happy to announce general availability of Firebird 3.0.7 — the latest point release in the Firebird 3.0 series.
This sub-release offers many bug fixes and also adds a few improvements, please refer to the Release Notes for the full list of changes.
Binary kits for Windows, Linux, Mac OS and Android platforms are immediately available for download.
All users of Firebird v3.0.6 are strongly encouraged to upgrade to v3.0.7 as soon as possible due to several serious bugs found in v3.0.6 and fixed in this point release.
Monday, October 19, 2020
Python 3 Firebird-driver & Firebird-lib 1.0.0 released
The firebird-driver package provides official Python Database API 2.0-compliant driver. In addition to the minimal feature set of the standard Python DB API, this driver also exposes the new (interface-based) client API introduced in Firebird 3, and number of additional extensions and enhancements for convenient use of Firebird RDBMS. The driver is written as pure-Python package (requires Python 3.8+) on top of Firebird client library (fbclient.so/dll) using ctypes. Driver supports Firebird version 3.0 and higher.
You can download this driver from PyPI or or install it using pip.
Please note, that FDB driver is now considered as legacy driver, and its development will be discontinued together with 2.5 once Firebird 4.0 will be released later this year.
The driver uses firebird-base package, which is a collection of modules that have general applicability, like extended configuration, context-driven logging and trace/audit, hooks, work with structured binary buffers, extended data structures etc. The driver uses almost all features provided by “base” package, but specifically the use of hook mechanism and context-driven logging and trace/audit are potentially the most valuable improvements.
The firebird-lib package provides extensions to the firebird-driver.
This package provides modules for:
Work with Firebird database schema.
Work with Firebird monitoring tables.
Processing output from gstat Firebird utility.
Processing Firebird server log.
Processing output from Firebird server trace & audit sessions.
You can download this library from PyPI or or install it using pip.
Monday, September 21, 2020
Firebird driver for Python 3– release 0.8.0
ChangeLog:
Documentation, both in code and separate (especially Usage Guide).
Added support for new FB4 data types in ARRAY fields.
Refactoring in driver hooks.
New Cursor.call_procedure() method.
Refactoring and fixes in Server and its services.
New Flamerobin snapshot available! 0.9.3.4 with a few fixes and small features
New Flamerobin snapshot available! 0.9.3.4 with a few fixes and small features
https://github.com/mariuz/flamerobin/releases/tag/0.9.3.4
Take a look, test and comment!