pauldex / sqlalchemy-firebird

A Firebird dialect for SQLAlchemy using the firebird-driver and/or fdb python Firebird driver
MIT License
23 stars 15 forks source link

Support for embedded database? #35

Closed gtdiehl closed 2 years ago

gtdiehl commented 2 years ago

Does this support the embedded firebird database? Access the fdb file without a running server just using the fbclient.dll.

Or do I need to have a Firebird server running?

pauldex commented 2 years ago

Yes, it definitely supports the embedded firebird database.

[db] ; embedded windows server win_embedded=firebird://sysdba@/D:\Projects\testFirebird\sqla_test.fdb?charset=UTF8&fb_library_name=D:\Projects\embeddedFirebird\fbclient.dll

; embedded linux server lin_embedded=firebird://sysdba@///home/paulgd/Projects/testFirebird/sqla_test.fdb?charset=UTF8&fb_library_name=/home/paulgd/Projects/embeddedFirebird/lib/libfbclient.so

These are example connection strings you would use. I’ve highlighted how you identify where your embedded server is located.

Paul

From: Greg @.> Sent: Tuesday, February 1, 2022 5:26 PM To: pauldex/sqlalchemy-firebird @.> Cc: Subscribed @.***> Subject: [pauldex/sqlalchemy-firebird] Support for embedded database? (Issue #35)

Does this support the embedded firebird database? Access the fdb file without a running server just using the fbclient.dll.

Or do I need to have a Firebird server running?

— Reply to this email directly, https://github.com/pauldex/sqlalchemy-firebird/issues/35 view it on GitHub, or https://github.com/notifications/unsubscribe-auth/ABX7Z6YGO3CFIMMBPFNF4R3UZCBYXANCNFSM5NKYG2AA unsubscribe. Triage notifications on the go with GitHub Mobile for https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 iOS or https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub Android. You are receiving this because you are subscribed to this thread. https://github.com/notifications/beacon/ABX7Z6YQCKJFG22X34UWQKDUZCBYXA5CNFSM5NKYG2AKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4QWXL4MQ.gif Message ID: < @.> @.>

gtdiehl commented 2 years ago

Thank you @pauldex! I'll close the issue.