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
- Open the Database tab in the right sidebar
- Click Add Connection
- Enter connection details:
- Host, port (default 5432)
- Database name
- Username
- Password (stored encrypted in OS keychain)
- Click Test Connection — credentials are not saved until the test succeeds
- 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 TABLECREATE TABLEALTER TABLETRUNCATEGRANT/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.
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