LOCAL DATABASE CONVERTER

SQLite to PDF Export Online

Turn SQLite tables and query results into a downloadable PDF report, privately in your browser. 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 PDF, and save the complete export.

What the download contains

Choose a report title and portrait or landscape pages. Column headers repeat and pages are numbered. NULL is printed explicitly; BLOBs become hex. Limits: 12 columns, 10,000 rows, 200 pages, 8 MiB of values and 16,000 characters per cell. Oversized rows or characters outside the bundled Latin font fail explicitly. Use Excel or JSON for those values.

SELECT name, country FROM customers ORDER BY name;

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