Export #
SELECT can export query results to a file. The query runs in full (ignoring pagination), the output is formatted, and a save dialog lets you pick the destination.
Supported formats #
| Format | Extension | Details |
|---|---|---|
| CSV (comma) | .csv |
Comma-separated values |
| CSV (semicolon) | .csv |
Semicolon-separated (for locales using comma as decimal) |
| JSON | .json |
Array of objects, pretty-printed |
How it works #
- The query executes against the associated database with all variables resolved
- All rows are fetched (no streaming, no pagination)
- The result is formatted in the chosen format
- A native Save dialog opens with a suggested filename
- The file is written to the selected path
Export fetches the full result set in memory. For very large results, the
max_result_size_mblimit from.configstill applies.
Variable support #
Runtime variables ($VAR_NAME) are resolved the same way as in normal query execution. If unresolved variables exist, the runtime variable form appears before export starts.