Dump
Open a copy of an app database and see which tables it contains.
Open a .db or .sqlite file online. The file is read locally in the browser.
The database is parsed in a background thread by a WebAssembly build of SQLite. The page does not crash when opening large files.
The tool is intended for browsing a SQLite file without installing a client.
Open a copy of an app database and see which tables it contains.
Read the CREATE statements of the selected table or view.
Page through the data before an import or a debugging session.
SQLite is an embedded relational database. The whole database lives in one file, and no separate server is required.