An open API service indexing awesome lists of open source software.

https://github.com/precog/quasar-destination-postgres

Quasar plugin providing the ability to push results into a Postgres database
https://github.com/precog/quasar-destination-postgres

Last synced: 6 months ago
JSON representation

Quasar plugin providing the ability to push results into a Postgres database

Awesome Lists containing this project

README

          

# quasar-destination-postgres [![Discord](https://img.shields.io/discord/373302030460125185.svg?logo=discord)](https://discord.gg/QNjwCg6)

## Usage

```sbt
libraryDependencies += "com.precog" %% "quasar-destination-postgres" %
```

## Configuration

```json
{
"connectionUri": String
[, "schema": String]
}
```

* `connectionUri` (REQUIRED): A Postgres [connection URL](https://jdbc.postgresql.org/documentation/head/connect.html) **without the leading `jdbc:`**. Example `postgresql://localhost:5432/db?user=alice&password=secret`.
* `schema` (OPTIONAL): The name of the schema to use for all database objects, uses the server default if omitted.