SQLite Local Browser

Your SQLite database. Your browser. No server needed.

SQLite Local Browser is a full-featured database tool that runs entirely in your browser โ€” no installation, no backend, no data ever leaving your machine. Just open a .db file and start working.

Browse tables, write SQL queries, visualize data as charts, inspect schemas, and export your results โ€” all with a clean interface that gets out of your way. Whether you're a developer debugging a local app database, an analyst exploring data, or just someone who needs to poke around a .sqlite file without installing heavy software, SQLite Local Browser has you covered.

Free. Private. Fast. No sign-up required.

User Manual

Overview

SQLite Local Browser is a browser-based SQLite database editor and viewer. It works entirely offline โ€” your database file is opened locally and never uploaded anywhere. It supports .db, .sqlite, .sqlite3, and .db3 files.

Getting Started

Opening a Database

Creating a New Table

Click ๐Ÿ†• New Table in the toolbar to define a new table from scratch.

Saving Your Work

The Sidebar

The left sidebar lists all Tables and Views in your database. Click any item to select it and work with it in the main panel.

Main Tabs

Browse

Displays the rows of the selected table in a paginated grid.

SQL

A full SQL editor for writing and running arbitrary queries.

Query Builder

A visual, no-code interface for constructing SQL queries.

Schema / DDL

Shows the raw DDL (CREATE TABLE statements and friends) for the selected table or the entire database.

Indexes

Lists all indexes on the selected table. Click โž• New index to create one.

Relationships

Displays the foreign key relationships defined in the schema. Click Export SVG to save the diagram.

ERD

An interactive Entity-Relationship Diagram of your entire database. Click a table to highlight its connections. Export as SVG or PNG.

Statistics

Database-wide statistics โ€” table sizes, row counts, and more. Click Refresh to update.

Profile

Column-level profiling for the selected table: value distributions, null counts, unique counts, and other per-column stats. Click Profile current table to run the analysis.

Search

A global full-text search across all tables in the database.

Integrity

Runs SQLite's built-in integrity check on the database and reports any errors or corruption.

Compare

Opens a second SQLite database alongside the current one and compares schemas and data between them. Click Open second DBโ€ฆ to load the comparison database.

Snapshots

SQLite Local Browser automatically takes snapshots before any write operation (at most one per 5 seconds, keeping up to 15).

Log

An audit log of all SQL statements executed in the current session, including auto-generated ones.

Charts

After running a query in the SQL tab, click ๐Ÿ“Š Chart to visualize the results.

SettingOptions
Typebar, line, scatter, pie
X axisany column
Y axisany numeric column
Aggregatenone, sum, avg, count
Limitmax rows to plot

Click Draw to render. Export as SVG or PNG with the respective buttons.

Keyboard Shortcuts

ShortcutAction
Ctrl+EnterRun SQL query

Privacy

SQLite Local Browser processes everything locally in your browser. No data is transmitted to any server. Your database file stays on your machine at all times.

Supported File Types

.db ยท .sqlite ยท .sqlite3 ยท .db3