internal/dbconnect/postgres.go Postgres
pgx driver. Mixed-case identifier auto-quoting. JSONB pretty-print. Schema browser by database → schema → table.
Postgres connections use the pgx driver with database/sql scan paths. JSON and JSONB columns render as pretty JSON; timestamps round-trip as ISO 8601.
Auto-quoting
Mixed-case identifiers are auto-quoted. Postgres folds unquoted names to lowercase, which surfaces as error 42P01 (table not found). ShellYard wraps any identifier with non-lowercase letters in "..." automatically.
Schema browser
The browser lists every database the user can read; expand to see schemas → tables / views / foreign tables → columns with type. Right-click a table for a default SELECT * skeleton.
Health
The Health tab reads pg_stat_database, pg_stat_activity, and pg_stat_replication, plus cache-hit % and dead-tuple bloat. See Health dashboards.