Skip to content

PostgreSQL

PostgreSQL Driver

Use the PostgreSQL driver when you want streaming query results, schema browsing, and PostgreSQL-aware autocomplete inside VS Code.

Default connection fields

FieldDefaultDescription
HostRequiredPostgreSQL host
Port5432Standard PostgreSQL port
DatabaseOptional but recommendedDefault database for the connection
SchemaOptionalDefault schema, often public or an app-specific schema
UserOptionalPostgreSQL user name
PasswordOptionalStored in VS Code SecretStorage
SSL / TLSfalseTurn on when your endpoint requires TLS
Verify server certificatetrueKeep enabled for normal production use
Max pooled connectionsDriver defaultOptional pool cap
TimeoutInherits global defaultPer-connection timeout override in seconds
  • Set the default database so DBeagle can open with the right context.
  • Set the default schema if your day-to-day work lives outside public.
  • Use Select Active Schemas after connecting if you want autocomplete and tree browsing to focus on a narrower subset.

How PostgreSQL appears in DBeagle

Internally, DBeagle maps the connected PostgreSQL database into its shared catalog slot and keeps schemas as-is. In practice, the tree feels natural:

  • database
  • schema
  • table or view
  • column

Notes

  • PostgreSQL uses streaming query execution for large result sets.
  • Query cancellation and timeout handling map cleanly into the shared DBeagle execution flow.
  • Schema selection affects both tree browsing and metadata-backed autocomplete.

PostgreSQL connection form