sqlalchemy-firebird works for Interbase 7.5? #47
Unanswered
thomaz-yuji
asked this question in
Q&A
Replies: 1 comment
-
You may be able to connect using a firebird+fdb connection string. If you're using Python 3.8+, you will need to install fdb to your virtual environment after installing sqlalchemy-firebird. Using the same parameters as in your example above, your connection string would look like this: db_uri = "firebird+fdb://sysdba:password@hostname:3050/path" Then use the engine object as described in the SQLAlchemy documentation. Please let us know if this is successful. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Firstly, congratulations on this impressive project!
I'm wondering if it's feasible to utilize sqlalchemy-firebird with an Interbase 7.5 database, given its compatibility with Firebird 2.5 on Linux. Using pure fdb, i can easily connect using:
from fdb.fbcore import Connection, InternalError
from fdb.fbcore import ISOLATION_LEVEL_READ_COMMITED, isc_info_version, isc_info_page_size
How can i use connection_class from fdb to use sqlalchemy-firebird?
Beta Was this translation helpful? Give feedback.
All reactions