ConductoreComing soon — $49

Database Panel

Conductore includes a PostgreSQL query panel accessible from the right sidebar. It provides a lightweight SQL editor and schema browser for development databases.

Connecting

  1. Open the Database tab in the right sidebar
  2. Click Add Connection
  3. Enter connection details:
    • Host, port (default 5432)
    • Database name
    • Username
    • Password (stored encrypted in OS keychain)
  4. Click Test Connection — credentials are not saved until the test succeeds
  5. Click Save

Multiple connections are supported. Switch between them with the connection dropdown.

Schema browser

Once connected, the schema browser shows:

  • All schemas and tables
  • Columns with data types for each table
  • Indexes and foreign keys (expandable)

Click a table name to insert it into the query editor.

Query editor

Type SQL directly in the editor. Run the current query with Ctrl+Enter.

Results are displayed in a paginated table below the editor. Export results as CSV with the Export button.

DDL guard

Conductore blocks the following statement types by default to protect against accidental schema changes:

  • DROP TABLE
  • CREATE TABLE
  • ALTER TABLE
  • TRUNCATE
  • GRANT / REVOKE

A warning is shown if you attempt to run a DDL statement. You can override this per-statement by clicking Allow DDL — use with caution.

Production databases

Never connect the database panel to a production database. It is designed for local and development use only. The DDL guard does not replace access controls.

Use cases

  • Check query results while developing
  • Inspect a table schema during refactoring
  • Verify migration results
  • Quick data exploration during debugging