mirror of
https://github.com/apache/superset.git
synced 2026-04-21 09:04:38 +00:00
Co-authored-by: jwilliams-ocient <60358443+jwilliams-ocient@users.noreply.github.com> Co-authored-by: Jordan Williams <jwilliams@ocient.com> Co-authored-by: rmasters1 <100157128+rmasters1@users.noreply.github.com>
38 lines
990 B
Plaintext
38 lines
990 B
Plaintext
---
|
|
title: Ocient DB
|
|
hide_title: true
|
|
sidebar_position: 20
|
|
version: 1
|
|
---
|
|
|
|
## Ocient DB
|
|
|
|
The recommended connector library for Ocient is [sqlalchemy-ocient](https://pypi.org/project/sqlalchemy-ocient).
|
|
|
|
## Install the Ocient Driver
|
|
|
|
```
|
|
pip install sqlalchemy-ocient
|
|
```
|
|
|
|
## Connecting to Ocient
|
|
|
|
The format of the Ocient DSN is:
|
|
|
|
```shell
|
|
ocient://user:password@[host][:port][/database][?param1=value1&...]
|
|
```
|
|
|
|
The DSN for connecting to an `exampledb` database hosted at `examplehost:4050` with TLS enabled is:
|
|
```shell
|
|
ocient://admin:abc123@examplehost:4050/exampledb?tls=on
|
|
```
|
|
|
|
**NOTE**: You must enter the `user` and `password` credentials. `host` defaults to localhost,
|
|
port defaults to 4050, database defaults to `system` and `tls` defaults
|
|
to `unverified`.
|
|
|
|
## User Access Control
|
|
|
|
Make sure the user has privileges to access and use all required databases, schemas, tables, views, and warehouses, as the Ocient SQLAlchemy engine does not test for user or role rights by default.
|