Skip to content

PostgreSQL

Connection Parameters

Required parameters:

  • user: Database user name
  • password: Database password
  • host: Database host address
  • database: Database name

Connection String Format

postgresql://<user>:<password>@<host>:<port>/<database>

Example

postgresql://postgres:postgres@localhost:5432/postgres

Additional Notes

  • Supports schema-level operations
  • Automatically handles timezone conversions to UTC