27 lines
592 B
Plaintext
27 lines
592 B
Plaintext
---
|
|
title: StarRocks
|
|
hide_title: true
|
|
sidebar_position: 5
|
|
version: 1
|
|
---
|
|
|
|
## StarRocks
|
|
|
|
The [sqlalchemy-starrocks](https://pypi.org/project/starrocks/) library is the recommended
|
|
way to connect to StarRocks through SQLAlchemy.
|
|
|
|
You'll need to the following setting values to form the connection string:
|
|
|
|
- **User**: User Name
|
|
- **Password**: DBPassword
|
|
- **Host**: StarRocks FE Host
|
|
- **Catalog**: Catalog Name
|
|
- **Database**: Database Name
|
|
- **Port**: StarRocks FE port
|
|
|
|
Here's what the connection string looks like:
|
|
|
|
```
|
|
starrocks://<User>:<Password>@<Host>:<Port>/<Catalog>.<Database>
|
|
```
|