Saves the SQL Console result grid to a file using ElevateDB’s
EXPORT TABLE command. Opens from the
Export button in the result grid toolbar.
The file is written to an EDB store — a named
filesystem folder registered in the EDB session configuration. Configure
stores in the Session Dialog (Open Session on the
Source Database tab) under the store settings. The full path of the
selected store is shown below the dropdown.
| Field | Description |
|---|---|
| Store | EDB store (local folder) where the file will be written. |
| File name | Output file name within the selected store
(e.g. export.csv). |
| Format | DELIMITED — character-delimited text (CSV-style).
XML — EDB XML format. |
| Encoding | AUTO — EDB chooses based on content. ANSI
— ANSI encoding. UNICODE — UTF-16 LE with BOM. |
| Date format | Date output format string (e.g. YYYY-MM-DD). |
| Time format | Time output format string (e.g. HH:MM:SS). |
| Field | Description |
|---|---|
| Delimiter char | Column separator (e.g. , or ;). Single
character. |
| Quote char | Text quoting character (e.g. "). Single character. |
| Decimal char | Decimal separator for numeric values (e.g. . or
,). Single character. |
| Include headers | When checked, the first row contains column names. |
If the store list is empty, configure a local store in the EDB session settings first. The active result filter (set via the Filter field in the result toolbar) is not honoured by the export —
EXPORT TABLEruns directly against the local EDB temporary table and has noWHEREclause. All rows in the temporary table are exported regardless of the filter state. To export a filtered subset, copy to clipboard instead (Copy button) or re-run the query with an explicitWHEREclause.