QuraMate Logo QuraMate Docs
Getting started

Guide

SQL Editor

Execute focused SQL with selected-query run, streamed results, and clear data/messages/analysis views.

Updated 2026-03-15 · 7 min read

Jump to another doc

Open SQL Workspace First

Start in the query workspace with the correct active connection and database context.

SQL workspace and results
Use one query tab per intent and keep connection context visible before running.

Use Selection Execution For Safer Iteration

QuraMate execution flow supports running selected SQL first, then full statement execution when ready.

Recommended rhythm:

  1. run a small selected statement
  2. review data / messages result views
  3. run the full query only after context checks pass

Format And Readability

Use SQL formatting before final run to reduce visual mistakes in long joins and nested queries.

The workspace also tracks query execution state per tab (queryExecuted) and keeps result view context (data, messages, analysis) for quick triage.

Streamed Result Behavior

Backend execution is streamed in batches for larger results, so first rows can appear before full completion.

Use this to validate early signals fast:

  • column shape and types
  • initial row quality
  • warnings or messages

Safety Baseline Query

SELECT *
FROM your_table
LIMIT 25;

Continue with Result Grid Editing once your first result set is stable.