LOCAL DATABASE EDITOR

SQLite Editor Online

Open a database, browse a table and edit rows without uploading your data.

How to edit your database

  1. Select a table in the workspace.
  2. Use Add row or Edit beside a row. Choose explicit TEXT, INTEGER, REAL, NULL or BLOB values.
  3. Save your changes, then use Export database to download the updated database.

Your original file stays unchanged. Edits affect the local working copy. Delete requires confirmation; database triggers and foreign-key cascades can affect related rows.

Safe, precise changes

Updates use a stable row identifier and reject stale rows or changed schemas. SQLite constraints apply atomically. Generated columns are read-only. Views and virtual tables cannot be edited with this form; tables without a usable identifier support insertion only.

Large integers retain all digits. BLOB values use hexadecimal text. Individual editing forms are limited to 1 MiB of values.

Design a new schema · Export to Excel · Read the guides