AppsDatabase Client
Import & Export
CSV import with a mapping wizard; export to CSV, JSON, SQL, or Excel.
Export a table (or query result)
- Open the table (or run the query).
- Choose Export and pick a format:
- CSV — for spreadsheets and other tools
- JSON — for scripts and APIs
- SQL —
INSERTstatements you can replay elsewhere - XLSX — a real Excel file
- Pick where to save.
Exports stream: rows are written page by page, so exporting a million-row table won't eat your RAM. Values are never mangled — and cells that could be interpreted as spreadsheet formulas are quoted safely in CSV, so a malicious =CMD(...) value in your data can't execute in Excel.
Import a CSV
The import wizard walks you through it:
- Right-click a table → Import CSV and pick the file.
- The wizard sniffs the format — delimiter (comma/semicolon/tab) and whether row 1 is a header — and shows a preview. Adjust if it guessed wrong.
- Map columns: each CSV column → a table column. Skip the ones you don't want.
- Values are coerced to the column types (text
"42"into an integer column, etc.). - Confirm. The import runs through the same staged-commit path as manual edits — you'll see what's about to happen before it happens, and safe mode applies.
CSV dialect
The parser is RFC-4180 compliant: quoted fields, embedded commas, embedded newlines, escaped quotes — all handled. If your CSV opens correctly in a spreadsheet, it'll import correctly here.