Getting started

How to open a SQLite file online safely

Inspect a local SQLite database in your browser without installing desktop software or sending the file to a remote server.

Open SQLite Viewer

Open your database in three steps

  1. Open SQLite Viewer in a modern desktop browser.
  2. Drop your database onto the opening card, or click it and select a .db, .sqlite, .sqlite3 or .db3 file.
  3. Select a table in the sidebar. The viewer creates a query tab and displays the first page of rows.
Privacy: the file is read locally by browser JavaScript. It does not need to be uploaded to inspect tables, execute SQL or generate an ER diagram.

What you can inspect

The table list provides quick access to tables and views. You can search long schemas, sort tables by several measurements, inspect column information, control visible columns and pin columns while reviewing wide result sets.

For more detailed work, use the SQL editor. A basic query looks like this:

SELECT *
FROM "customers"
LIMIT 0, 30;

If the file will not open

Save or export your findings

Query results can be exported in common formats. If you edit rows or execute write statements, use Save DB to download the current database. The original local file is not silently overwritten.