Skip to content

SQL Console

The SQL Console lets you run SQL directly. Queries are routed through the Driver, so parameter style and quoting match your configured dialect.

  1. Open Studio → SQL Console.
  2. Type SQL, e.g. SELECT * FROM users WHERE age > 18;
  3. Run it; results render as a grid.

The console supports bound parameters the same way the builder does. Values are sent as parameters, not concatenated.

  • Use the console to prototype a query, then move it into a typed builder call.
  • Prefer the builder in app code — the console is for exploration.
  • Running a DELETE without WHERE in the console — it deletes real rows.
  • Assuming console SQL is type-checked (it isn’t — that’s the builder’s job).