π Try the online demo here
(Demo link goes here)
Web SQLite Editor is a 100% client-side SQLite database editor that runs entirely in your browser.
No servers. No backend. No installation. No uploads.
Everything happens locally using pure JavaScript.
Your data never leaves your computer.
- β 100% browser-side execution
- β No data is sent to any server
- β Works fully offline after loading
- β
Uses
sql.js(SQLite compiled to WebAssembly)
If you can open a web page, you can safely edit SQLite databases.
- π Open any existing SQLite database (
.sqlite,.db,.sqlite3) - π Create new in-memory databases
- π§± Create, edit, and delete tables
- βοΈ Insert, update, and delete records
- 𧬠Modify table structure (columns, types, constraints)
- π Full support for Primary Keys, including composite PKs
- β‘ Execute custom SQL queries
- π Create and manage SQLite triggers
- π Browse large tables efficiently
- π 100% web-based β no installation required
The editor uses:
- sql.js (SQLite compiled to WebAssembly)
- Pure JavaScript
- HTML + CSS
- Runs entirely in the browser memory
Databases can be:
- Loaded from a local file
- Created empty in memory
- Exported back to a SQLite file
There is nothing to install.
Just clone the repository and open sqlite_editor.html:
git clone https://github.com/sysmaya/SQLite-web-Editor.git
cd web-sqlite-editor

