IDE Settings
IDE settings are client-side and scoped to the IDE only (they do not affect DB DevOps). Open them from the profile menu; Reset to defaults reverts everything.
Editor
- Font size / Tab size (2 / 4 / 8) / Word wrap / Line numbers / Minimap (off by default).
- Auto-close brackets & quotes and bracket-pair colorization for nested-expression legibility.
Formatting
- Keyword case for
Ctrl/Cmd+Shift+F,UPPER/lower/Preserve. Formatting is dialect-aware and indents to your tab width; non-SQL engines (MongoDB, Redis) are left unchanged.
Query Execution & Safety
- Row limit, caps rows fetched/rendered per query (0 = unlimited) to keep an accidental unbounded
SELECTfrom flooding the grid. - Statement timeout, aborts the IDE's wait after N seconds (0 = none). This stops the client from blocking; the server-side statement may still run to completion.
- Confirm before execute, interposes a confirmation before any statement runs.
- Block destructive statements, a hard guard that refuses
DROP,TRUNCATE, and anyDELETE/UPDATElacking aWHERE. The same guard constrains the AI assistant, which will not emit destructive SQL. Enable it on connections where accidental data loss must be structurally impossible, not merely discouraged.
Results
- NULL display, the sentinel for a SQL
NULL(e.g.[NULL]) so a real null is never conflated with an empty string. - Max column width, pixel cap so a single wide value can't distort the grid.
- Max value length, truncation threshold for long cell text (0 = uncapped); the full value stays available on hover.