SQLite Browser Tutorial: Open, Query & Edit SQLite Databases in Your Browser
A complete guide to the DevToolSets SQLite Browser — open existing database files, create new ones, write SQL queries, browse tables, and export your work, all running locally via WebAssembly.
What You'll Learn
- How the SQLite Browser runs entirely in your browser via WebAssembly
- Opening existing SQLite database files
- Creating a new empty in-memory database
- Browsing tables, views, and column schemas
- Writing and executing SQL queries
- Exporting your database as a .sqlite file
- Using query history to re-run past statements
How It Works
Step 1: Opening a Database
Open the SQLite Browser
Navigate to the SQLite Browser tool. You'll see a drop zone on the left and a query editor on the right.
Load an existing file
Drag and drop a SQLite file onto the drop zone, or click to browse. Supported extensions:
.sqlite.db.sqlite3.db3
The file is read into memory and you can immediately start browsing and querying.
Or create an empty database
Click "Create empty database" to start with a blank in-memory SQLite instance. You can create tables, insert data, and build your schema from scratch using SQL.
Step 2: Browsing Tables
View the Tables tab
The bottom panel shows a Tables tab listing all tables and views from sqlite_master. Each entry shows the name, type (table or view), and columns with their data types (from PRAGMA table_info).
Click a table to inspect it
Clicking a table name runs a SELECT query against it and shows the data in the Results tab. The table list refreshes automatically after each query, so newly created tables appear immediately.
Step 3: Running SQL Queries
Write your SQL
The query editor comes pre-filled with:
Replace it with any SQLite-compatible SQL.
Execute
Click the Run button. Since SQLite runs locally via WASM, queries execute instantly.
Read the results
Results appear in the Results tab at the bottom in a table format, with execution time displayed above. Errors show the full SQLite error message.
Step 4: Exporting Your Database
Click the download button in the file panel to export the entire database as a .sqlite file. The exported file is a fully valid SQLite database that you can open in any SQLite tool — DB Browser for SQLite, the sqlite3 CLI, or load it back into this tool later.
Step 5: Using Query History
Step 6: Customizing the Layout
The interface uses a resizable split layout. Drag the dividers to adjust:
- Horizontal divider — adjust space between the file panel and query editor
- Vertical divider — adjust space between the top panels and the bottom results area
Common Use Cases
Tips & Best Practices
Ready to try it out?
Open SQLite Browser →