PocketPlay
中文

SQLite Viewer

Open a SQLite database in your browser: list tables with row counts, browse rows, run SQL queries and export CSV or JSON.

🔒 Runs in your browser — files never leave your deviceFree · No sign-up
Drop a SQLite database here, or click to choose .sqlite · .sqlite3 · .db · .db3 — the file stays on your device

    Drop a database above to explore it here.

    How to use the SQLite viewer

    1. Drop a .sqlite, .db or .db3 file onto the box above — the engine is fetched once, then everything runs locally.
    2. Pick a table on the left to page through its rows and read its CREATE TABLE schema.
    3. Write any SELECT in the SQL box and press Run (or Ctrl/⌘ + Enter), then export the table or the result as CSV or JSON.

    FAQ

    Is my database uploaded?

    No. The database is opened by a WebAssembly build of SQLite inside the page; the only network request is the engine itself from a CDN. Your data never leaves the browser tab.

    Can I change the data?

    You can run INSERT, UPDATE and DELETE, but they only affect the in-memory copy loaded from your file. The file on disk is never written to, and the changes disappear when you reload the page.

    Which files work?

    Any SQLite 3 database, whatever the extension — including the .db files shipped inside app backups, browser profiles and mobile exports. Encrypted (SQLCipher) databases cannot be opened.