Asyncio support for Firebird in SQLAlchemy
Project description
sqlalchemy-firebird-async
Asynchronous Firebird dialect for SQLAlchemy.
This library provides proper asyncio support for Firebird databases in SQLAlchemy 2.0+, allowing you to write fully asynchronous code using modern Python patterns.
It supports three underlying drivers:
fdb(Legacy) - Runs the official C-based driver in a thread pool. Fast and stable.firebird-driver(Modern) - Official driver for Firebird 3+. Also threaded (run_in_executor).firebirdsql- Pure Python asyncio driver. Currently experimental due to upstream issues.
📦 Installation
Install using pip:
# Install with the FDB driver (Legacy, Stable)
pip install "sqlalchemy-firebird-async[fdb]"
# Install with the Firebird Driver (Modern, FB 3.0+)
pip install "sqlalchemy-firebird-async[firebird-driver]"
# Install with pure python driver (Experimental)
pip install "sqlalchemy-firebird-async[firebirdsql]"
# Note: For correct async behavior with firebirdsql, you might need a patched version:
# pip install git+https://github.com/attid/pyfirebirdsql.git
🚀 Quick Start
1. Using FDB Driver (Legacy)
This dialect runs the legacy fdb driver in a thread pool.
URL Scheme: firebird+fdb_async://
import asyncio
from sqlalchemy.ext.asyncio import create_async_engine, async_sessionmaker
from sqlalchemy import text
async def main():
# Format: firebird+fdb_async://user:password@host:port/path/to/db
dsn = "firebird+fdb_async://sysdba:masterkey@localhost:3050//firebird/data/employee.fdb"
engine = create_async_engine(dsn, echo=True)
# ... usage is identical for all drivers
2. Using Firebird Driver (Modern)
This dialect uses the modern firebird-driver package (the official driver for Firebird 3.0+), running in a thread pool. It requires Firebird 3.0 or higher.
URL Scheme: firebird+firebird_async://
engine = create_async_engine(
"firebird+firebird_async://sysdba:masterkey@localhost:3050//firebird/data/employee.fdb?charset=UTF8"
)
3. Using Native Async Driver (firebirdsql)
Warning: The upstream firebirdsql driver currently has issues with asyncio compatibility (bugs causing crashes or incorrect behavior).
A patched fork is available at attid/pyfirebirdsql, which fixes the async logic but currently exhibits significantly lower performance (approx. 4x slower than fdb).
URL Scheme: firebird+firebirdsql_async://
engine = create_async_engine(
"firebird+firebirdsql_async://sysdba:masterkey@localhost:3050//firebird/data/employee.fdb"
)
📊 Performance Comparison
We compared both drivers executing 5000 queries in 8 concurrent tasks (4 raw SQL + 4 ORM).
| Metric | fdb (Threaded) 🏆 | firebirdsql (Patched) | Difference |
|---|---|---|---|
| Total Time | 4.53s | 116.20s | ~25x slower |
| Avg Query Time (ORM) | 2.54s | 114.43s | ~45x slower |
| Avg Query Time (Raw) | 4.44s | 116.14s | ~26x slower |
| Parallel Ratio | 6.16x | 7.94x | - |
Benchmark details: 8 concurrent workers, 5000 rows each, total 40k rows.
As seen above, fdb in a thread pool is significantly faster for high-load scenarios.
🔌 Connection String Guide
| Driver | Protocol | URL Scheme |
|---|---|---|
| fdb (Legacy) | TCP/IP | firebird+fdb_async://user:pass@host:port/db_path |
| firebird-driver (Modern) | TCP/IP | firebird+firebird_async://user:pass@host:port/db_path |
| firebirdsql | TCP/IP | firebird+firebirdsql_async://user:pass@host:port/db_path |
🤝 Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sqlalchemy_firebird_async-0.2.1.tar.gz.
File metadata
- Download URL: sqlalchemy_firebird_async-0.2.1.tar.gz
- Upload date:
- Size: 13.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3245dd6905938c0de6b06752cd046800987ed0e4bd50589862f63560becbea6d
|
|
| MD5 |
781f107d94cb3d06e0f3e017470827dd
|
|
| BLAKE2b-256 |
615491c0f4f64c6dfaff550def0bd38ea0790e3643fc04981e10a028c277bdc6
|
File details
Details for the file sqlalchemy_firebird_async-0.2.1-py2.py3-none-any.whl.
File metadata
- Download URL: sqlalchemy_firebird_async-0.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbc8cb4988e4554cf93c482141b32c862eb29502760b6e6c06dd1544a8f9a4a0
|
|
| MD5 |
d9c8295c37c4ce80a5a3173e30762830
|
|
| BLAKE2b-256 |
997ea4f69337e102e4ab6178835c00a7bfb7fa69d68f79d0c4d24d0981053a98
|