LOCAL DATABASE CONVERTER

SQLite to CSV Converter Online

Convert a complete SQLite table or SELECT result to CSV locally, with filters, exact large integers and spreadsheet-safe text. No account or installation required. Your original file stays unchanged.

How to convert

  1. Open an unencrypted .db, .sqlite or .sqlite3 file in the workspace.
  2. Select a table to browse it, or write a query. Filters and sorting apply across the database.
  3. Choose Export data, select CSV, and save the complete export.

What the download contains

Choose a table, optionally apply filters, then use Export data → CSV. The export includes every matching row, not just the visible page. CSV writes a header and uses empty fields for NULL; empty text is quoted. BLOBs become 0x-prefixed hex. Formula-like text receives a leading apostrophe for spreadsheet safety.

SELECT name, country FROM customers ORDER BY id;

Complete export, bounded preview

The grid displays a bounded preview. CSV, JSON, Excel and PDF export runs one read-only SELECT again against the current database; it respects any LIMIT in your query. It does not rerun writes or export cached results. To export a whole table, select Current table with applied filters and sorting. Export one table per download.

File size and browser support

Rows are processed in chunks with progress and cancellation. Browsers with direct file saving write to disk; other browsers use a download limited to 64 MiB. Exceeding that limit fails explicitly instead of downloading a partial result. Large individual values and query execution limits still apply. Saved SQLite imports use browser storage; temporary database imports are limited to 100 MiB.

Keep a database backup

Use Export database for a complete SQLite snapshot, including full BLOBs. CSV and JSON are data formats, not schema-preserving backups. SQL dumps contain transaction commands that the workspace deliberately rejects; restore them in an external SQLite client.

Read the export guide · SQLite viewer · Convert CSV to SQLite