Skip to content

Commit

Permalink
docs(teradata): fix connection string (#23051)
Browse files Browse the repository at this point in the history
  • Loading branch information
villebro authored Feb 10, 2023
1 parent 684b888 commit 85f0779
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/docs/databases/installing-database-drivers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ A list of some of the recommended packages.
| [Snowflake](/docs/databases/snowflake) | `pip install snowflake-sqlalchemy` | `snowflake://{user}:{password}@{account}.{region}/{database}?role={role}&warehouse={warehouse}` |
| SQLite | No additional library needed | `sqlite://` |
| [SQL Server](/docs/databases/sql-server) | `pip install pymssql` | `mssql://` |
| [Teradata](/docs/databases/teradata) | `pip install teradatasqlalchemy ` | `teradata://{user}:{password}@{host}` |
| [Teradata](/docs/databases/teradata) | `pip install teradatasqlalchemy` | `teradatasql://{user}:{password}@{host}` |
| [TimescaleDB](/docs/databases/timescaledb) | `pip install psycopg2` | `postgresql://<UserName>:<DBPassword>@<Database Host>:<Port>/<Database Name>` |
| [Vertica](/docs/databases/vertica) | `pip install sqlalchemy-vertica-python` | `vertica+vertica_python://<UserName>:<DBPassword>@<Database Host>/<Database Name>` |
| [YugabyteDB](/docs/databases/yugabytedb) | `pip install psycopg2` | `postgresql://<UserName>:<DBPassword>@<Database Host>/<Database Name>` |
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/databases/teradata.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The recommended connector library is
The connection string for Teradata looks like this:

```
teradata://{user}:{password}@{host}
teradatasql://{user}:{password}@{host}
```

## ODBC Driver
Expand Down

0 comments on commit 85f0779

Please sign in to comment.