PostgreSQL
Steps and required credentials to connect PostgreSQL to Squadbase
Required Information
| Field | Description |
|---|---|
| PostgreSQL Connection URL | The URL for connecting to PostgreSQL (e.g., postgresql://user:password@host:5432/database). |
How to Obtain
PostgreSQL Connection URL
The connection URL follows this format:
postgresql://[username]:[password]@[host]:[port]/[database]| Part | Description |
|---|---|
username | The PostgreSQL username |
password | The password for the user |
host | The hostname or IP address of the PostgreSQL server |
port | The PostgreSQL port number (default: 5432) |
database | The name of the database to connect to |
Example
postgresql://myuser:mypassword@db.example.com:5432/mydb