Drop a SQLite database
or click to browse — .db / .sqlite / .sqlite3 / .db3 · opened in your browser, never uploaded
Browse tables, run queries, build them visually — your database stays on your machine.
Your files never leave your browser — all processing is local.
Drop a SQLite database
or click to browse — .db / .sqlite / .sqlite3 / .db3 · opened in your browser, never uploaded
Drop a .db, .sqlite or .sqlite3 file and browse it immediately: every table with its row count, views and indexes, the full schema DDL per table, and a paginated data grid with column sorting and quick filters. A database is about the most sensitive file there is — this viewer runs SQLite compiled to WebAssembly inside your browser, so the file is never uploaded anywhere. Pull a database off a phone backup, an app's data folder or a server and inspect it without it touching the network.
Query it two ways. The SQL editor gives you the real thing — syntax highlighting, friendly error messages, query history, read-only by default with an explicit switch to enable writes and export the modified database. The visual query builder needs no SQL at all: pick a table, tick columns, stack filter conditions from dropdowns, choose sorting and a row limit — and watch the generated SQL update live as you build, which doubles as a gentle SQL tutorial. One click moves the built query into the editor for hand-tuning.
Queries you build can be saved (named, stored only in your browser, keyed to the database's schema so they reappear next time you open the same file), and a template library covers the everyday asks: first 100 rows, group-and-count top N, date-range filter, text search across a table, duplicate finder, NULL-ratio check. Results export to CSV or JSON; BLOB columns are type-sniffed and image blobs render as thumbnails. WAL sidecar files, SQLCipher-encrypted databases and corrupt files each get an honest, specific message instead of a crash.