SQLite

Free Online SQLite Viewer

Open a .db, .sqlite or .sqlite3 file and read it as a database: the schema on one side, a SQL editor on the other.

Stays on your computerNo accountSQL included

What it shows in a .db file

Tables, views and triggers with their row counts, every column with its declared type, the primary key and the indexed columns, and a PRAGMA integrity_check on the file as a whole. It opens .db, .sqlite and .sqlite3 alike, since the extension is a convention rather than part of the format.

The engine runs in your browser

The real SQLite library is compiled into this page, not a re-implementation of it, so the file is read straight from your disk and there is nothing for a server to do. Queries are read-only, which means nothing in the database changes, and closing the tab leaves nothing behind.

From one file to a complete data workflow

Need to move the database rather than inspect it? DBConvert converts SQLite data to and from popular database formats with schema and data migration support.