mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
27 lines
622 B
Plaintext
27 lines
622 B
Plaintext
---
|
|
title: Firebolt
|
|
hide_title: true
|
|
sidebar_position: 39
|
|
version: 1
|
|
---
|
|
|
|
## Firebolt
|
|
|
|
The recommended connector library for Firebolt is [firebolt-sqlalchemy](https://pypi.org/project/firebolt-sqlalchemy/).
|
|
|
|
The recommended connection string is:
|
|
|
|
```
|
|
firebolt://{username}:{password}@{database}?account_name={name}
|
|
or
|
|
firebolt://{username}:{password}@{database}/{engine_name}?account_name={name}
|
|
```
|
|
|
|
It's also possible to connect using a service account:
|
|
|
|
```
|
|
firebolt://{client_id}:{client_secret}@{database}?account_name={name}
|
|
or
|
|
firebolt://{client_id}:{client_secret}@{database}/{engine_name}?account_name={name}
|
|
```
|