SQLite Database Viewer & Query Runner
Open a .sqlite/.db file in your browser and run SQL against it.
Open a SQLite database
Files are read fully in your browser's memory — nothing is uploaded.
Drop a file here
Drop a .sqlite, .db, or .sqlite3 file, or click to browse.
About the SQLite Database Viewer & Query Runner
Drop in a SQLite database file and inspect it entirely client-side: browse tables with row counts, view column schemas, page through data, and run arbitrary SQL queries with results exportable as CSV or JSON. Powered by sql.js (SQLite compiled to WebAssembly) — nothing is uploaded, and changes are never written back to the original file.
Examples
List tables
SELECT name FROM sqlite_master WHERE type='table';Output
users, orders, productsKeyboard shortcuts
- Copy the main outputCtrl / ⌘ + Shift + C
- Download the resultCtrl / ⌘ + S
- Share this toolCtrl / ⌘ + Shift + S
- Reset the inputsAlt + R
- Open the tool search paletteCtrl / ⌘ + K
Related tools
SQL Playground & Query Runner
Dev Utilities
Write schema and seed SQL, then run queries against an in-memory database.
SQL Formatter
Dev Utilities
Format and indent SQL queries for readability.
SQL Query Analyzer
Dev Utilities
Find expensive SQL patterns, missing filters and index opportunities.
.editorconfig Generator
Dev Utilities
Create an .editorconfig file with per-language overrides.
.htaccess Redirect Generator
Dev Utilities
Generate Apache .htaccess redirect and rewrite rules.
Android APK Analyzer & Explorer
Dev Utilities
Open an APK, decode its manifest and browse or download every file inside.
Frequently asked questions
Version 1.0.0 · Updated 2026-08-11 · Runs entirely in your browser