Postgre Sql
The Postgre Sql Transport is used to communicate to Postgre Sql. It is suitable for development, testing, and production environments.
Configuration
To use the Postgre Sql Transport, define it under transports and reference it as current-transport.
Example
current-transport: local-postgre-sql
transports:
- name: local-postgre-sql
postgre-sql-transport-config:
connection-string: Data Source=(local);Initial Catalog=Ordering;Integrated Security=SSPI;Application Name=Busly-CLI;TrustServerCertificate=true
postgre-sql-transport-config Fields
| Field | Required | Type | Default | Description |
|---|---|---|---|---|
connection-string | Yes | string | — | Full Postgre Sql Connection string. |
Field Details
connection-string (required)
Postgre Sql connection string used to connect to the database.
Examples:
connection-string: Data Source=(local);Initial Catalog=Ordering;Integrated Security=SSPI;Application Name=Busly-CLI;TrustServerCertificate=true