mirror of
https://github.com/apache/superset.git
synced 2026-04-10 11:55:24 +00:00
24 lines
629 B
Plaintext
24 lines
629 B
Plaintext
---
|
|
title: Firebird
|
|
hide_title: true
|
|
sidebar_position: 38
|
|
version: 1
|
|
---
|
|
|
|
## Firebird
|
|
|
|
The recommended connector library for Firebird is [sqlalchemy-firebird](https://pypi.org/project/sqlalchemy-firebird/).
|
|
Superset has been tested on `sqlalchemy-firebird>=0.7.0, <0.8`.
|
|
|
|
The recommended connection string is:
|
|
|
|
```
|
|
firebird+fdb://{username}:{password}@{host}:{port}//{path_to_db_file}
|
|
```
|
|
|
|
Here's a connection string example of Superset connecting to a local Firebird database:
|
|
|
|
```
|
|
firebird+fdb://SYSDBA:masterkey@192.168.86.38:3050//Library/Frameworks/Firebird.framework/Versions/A/Resources/examples/empbuild/employee.fdb
|
|
```
|