SQLite Viewer

上传 .sqlite / .db 文件,使用 sql.js 在浏览器本地解析。文件不会上传到服务器。

What Is an Online SQLite Viewer?

An online SQLite viewer is a browser-based tool that uses sql.js, the WebAssembly build of SQLite, to open .sqlite / .db / .sqlite3 database files. The database file never leaves your computer: parsing and querying are done entirely in the browser.

Main Features

  • Load SQLite database files locally without installing any client software
  • Automatically list all tables and generate SELECT queries with one click
  • Execute SELECT statements and display results in a table
  • Show row counts, error messages and query status

Use Cases & Notes

Ideal for quickly inspecting SQLite databases created by mobile apps or desktop software. The tool recommends using SELECT statements only; be careful when running any modifying SQL.

How to Use

  1. Click Choose Database and upload a .sqlite / .db file
  2. Pick a table from the list to auto-generate a SELECT query
  3. Click Run SELECT to view the results