Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,26 @@ pip install firebolt-sqlalchemy
Connection strings use the following structure:

```
firebolt://{username}:{password}@{database}[/{engine_name}]
firebolt://{username}:{password}@{database}[/{engine_name}][?account_name={name}}]
```

`engine_name` is optional. If omitted, Firebolt will use the default engine for the database.

`account_name` is optional. If omitted a default account will be used for connection.

Examples:

```
firebolt://email@domain:password@sample_database
firebolt://email@domain:password@sample_database/sample_engine
```

If a different account name is required, it can be specified in the connection string

```
firebolt://email@domain:password@sample_database/sample_engine?account_name=my_account
```

To override the API URL (e.g. for dev testing):

```bash
Expand Down