Der beste SQLite-Editor ist der in Ihrem Editor
Erledigen Sie Ihre Arbeit, ohne VS Code zu verlassen. Nutzen Sie leistungsstarke Bearbeitungs- und Exportfunktionen. Funktioniert überall, auch über SSH und WSL.

Upgrade, um exklusive PRO-Workflows freizuschalten
Mit seiner tiefen Integration in VS Code ermöglicht SQLite Viewer PRO neue Workflows mit unerreichter Bequemlichkeit und Geschwindigkeit.
Von Grund auf für PRO-Anforderungen neu entwickelt
Sie können sich die PRO-Version als SQLite Viewer 2 vorstellen. Es sind nicht nur Feature-Flags, sondern eine komplett neue Engine unter der Haube. Kommt mit SQLite-Failover-Garantien und Unterstützung für große Dateien.
Nativer SQLite-Client
Die PRO-Version verwendet die offizielle SQLite-Implementierung und bietet damit die vollen Failover-Garantien. Der alte Readonly-Client bleibt als Fallback erhalten.
Unlimitierte Dateigröße
Alle Beschränkungen hinsichtlich der Dateigröße werden aufgehoben, auch bei Remote-Sitzungen. Nur die für die Anzeige erforderlichen Daten werden auf den lokalen Rechner übertragen.
Werbefreie Nutzung
PRO-Kunden genießen eine werbefreie Nutzung – ideal für Bildschirmfreigaben und Aufnahmen. Zudem erhalten PRO-Kunden ein exklusives PRO-Symbol () in der UI.
Enthält alles, was Sie an der kostenlosen Version schätzen
Das Upgrade auf SQLite Viewer PRO ist eine nahtlose Erfahrung. Geben Sie einfach den Lizenzschlüssel ein und Sie sind bereit. Zusätzlich zu neuen und exklusiven PRO-Features bleibt alles, was Sie an der kostenlosen Version mögen, unverändert.
Performantes UI
SQLite Viewer wurde mit Blick auf Performance entwickelt. Es nutzt die besten Tools des Web-Stacks und wird regelmäßig auf älterer Hardware getestet, um eine erstklassige Performance zu gewährleisten.
Passendes Theme
Schluss mit inkonsistenten Oberflächen. SQLite Viewer passt sich automatisch Ihrem VS Code-Theme an und integriert sich nahtlos in die bestehende VS Code-Umgebung.
Ein-Klick-Setup
SQLite Viewer benötigt keine externen Binärdateien auf Ihrem Rechner. Die Erweiterung bringt alles mit, sodass die Installation mit einem einfachen Klick abgeschlossen ist. Die gesamte Erweiterung ist nur 10 MB groß.
Funktioniert Überall
Ob in Cursor, VS Codium, CodeSandbox, GitPod, Google IDX oder anderen VS Code-Forks – SQLite Viewer passt sich der Umgebung an und bietet so viele Funktionen wie möglich.
Inhabergeführt
SQLite Viewer wird von einem einzigen, engagierten Entwickler gepflegt. Dies gewährleistet eine durchdachte Vision und Liebe zum Detail, die in rein kommerziellen Produkten selten ist.
Updates, kontinuierlich geliefert
SQLite Viewer PRO wird mit regelmäßigen Updates und neuen Features immer besser. Sehen Sie unten, was neu ist:
v25.8.2 Preview
PRO JSON Patch
Updating JSON values will now attempt to update the structure sparsely using SQLite's built-in json_patch
and jsonb_patch
utilities.
This can be useful when another process has modified the JSON value while manually editing the value through the extension UI.
Rather than overwriting the entire JSON value, only the properties that changed in the edit will be applied, preserving non-conflicting external changes.
This should be particularly useful when editing values in a VS Code tab and the Instant Commit setting.
Beware that this feature is still experimental and has a few sharp edges:
- Conflicts will still be resolved in favor of last-write, same as in the case of non-JSON values.
- This is subject to the limitations of SQLite's patch functions, specifically with respect to arrays, which are overwritten in whole.
- For textual
JSON
values, it will only attempt the new patch behavior if both values are strict RFC-8259 JSON values. SQLite supports a more relaxed standard for JSON, which also allows code comments. Applying patches throughjson_patch
would not preserve these.JSONB
columns do not have this limitation. - This feature is not available for batch updates
Fixes
PRO Fixed file upload UI not showing correctly when dropping a file onto a field in the 'New Row' dialogPRO Fixed a bug that made entering numeric values in the 'New Row' dialog difficultPRO JSON/B input field are now rendered correctly in 'New Row' dialog
Known Issues
- Editing
BLOB
s with the 'Edit in VS Code' feature and the Hex Editor extension will write incorrect results back to the db.
v25.8.1 Preview
PRO Drag & Drop File as BLOB
You can now drag and drop a file into the sidebar or modal fieldset to upload its content as a BLOB
in the corresponding column. This is an alternative to the file picker and not limited to BLOB
columns.
This works with both OS files from the File Explorer/Finder as well as VS Code files from the file tree.
Changes
PRO Removed per-cell datetime formats. The datetime format is now guessed per column.PRO Datetime format is now always shown in the header cell and its behavior is now the same as the one in the sidebar.PRO Fixed editing cell values in VS Code when column names include/
.
Known Issues
- Poor performance for uploading larger files
- Missing loading indicators when undoing file uploads
v25.8.0 Preview
PRO Edit in VS Code
You can now edit individual cell values in a tab in VS Code, making full use of VS Code's text editing features, installed extensions (Vim mode!), syntax highlighting, and more. This should be particularly useful when editing JSON/B columns.
You can access this feature through the "Edit in VS Code to the Side" icon button in the top right corner of a text area (visible on hover). There is now also a VS Code setting to configure the behavior of a cell double-click, allowing you to open it in the new VS Code tab feature instead of the built-in modal dialog.
This feature also makes use of VS Code's text syntax detection feature to open tabs with appropriate formatting pre-applied. This can be useful when storing HTML responses or Markdown content in SQLite.
For improved ergonomics, the behavior of the SQLite Viewer sidebar has been modified to auto-close when space is running low (i.e., when a VS Code tab opens to the side) and to auto-show when it becomes available again.
Changes
PRO UTC/local time zone toggle is now always visible in column headers- Improved queries for tables without
ROWID
and multiple primary keys - Using BLOBs as primary keys in tables without
ROWID
now works, provided they are small (<= 48 bytes). - Added a "Copy to clipboard" button to text areas that allows copying values to the clipboard without text cutoff limits
- Added an ellipsis "…" to the end of text values that were cut off due to size
- "Click to select" on text fields should be a little less finicky now
- Improved responsive sidebar handling with better width management
- Added "Open in VS Code" functionality to the Table Info SQL field
- Improved error handling, so that the sidebar is still accessible when an error occurs
PRO Fixed invalid output when exporting a table with exactly 1 row as a JSON objectPRO Fixed a bug that prevented deleting rows in tables withoutROWID
Known Issues
- Exporting from within the viewer is broken when multiples DBs of the same name are open (export from the command pallette not affected)
v25.7.0 Preview
PRO Export Dialog
Introduced a new export command for saving table data in multiple formats. This feature is designed as an alternative to the selection/clipboard-based export, especially for larger tables. Exported data is written directly to a file.
You can launch the export either as a standalone command from the Command Palette or through a modal dialog within the viewer. The modal dialog supports sorting and filtering, just like the clipboard export.
While this method can handle larger datasets than the clipboard export, it is still limited by JS' performance and the overhead of data marshalling. For exporting large tables (1M+ rows), a dedicated export tool is recommended.
Fixes
PRO Fixed a bug that prevented images from being embedded in exported data.PRO The cutoff for inlined BLOBs can now be configured from the export dialog (also affects clipboard export) and now defaults to 10KB.- Fixed an issue where the left sidebar could not be snapped to its minimum position.
- Added a warning when attempting to select more than 10,000 rows.
v25.6.1 Preview
- Added forward and backward button
- Moved 'Expand All' button inside the sidebar (only visible on hover; same as VS Code explorer)
- Section headers in the left sidebar are now sticky
- Updated various dependencies
Full Version History
Browse the complete changelog to see all features, bug fixes, and improvements across every version of SQLite Viewer PRO.
Kein Abo, kein Problem
SQLite Viewer PRO ist ein Einmalkauf und gewährt eine dauerhafte Lizenz. Funktioniert so lange, wie VS Code funktioniert. Ein monatliches Abonnement ist auch für kurzfristige Projekte verfügbar oder wenn Ihre Organisation wiederkehrende Zahlungen benötigt.
- Bearbeitungs- und Exportfunktionen
- Werbefreie Nutzung
-
Exklusives PRO-Symbol (
)
- Bearbeitungs- und Exportfunktionen
- Werbefreie Nutzung
-
Exklusives PRO-Symbol (
)
- Offline-Lizenzaktivierung1
- Keine laufende Lizenzüberprüfung2
Bestellungen werden von unserem Online-Reseller
Möchten Sie es zuerst ausprobieren? Nutzen Sie die 14-Tage-Rückerstattungsgarantie
Sie können SQLite Viewer PRO bis zu zwei Wochen lang testen und von der 14-Tage-Rückerstattungsgarantie Gebrauch machen. Um eine Rückerstattung zu beantragen, senden Sie einfach eine E-Mail an [email protected] mit der beim Kauf verwendeten E-Mail-Adresse – keine Erklärung erforderlich.
Häufig gestellte Fragen
Wie installiere ich die PRO-Version nach dem Kauf?
Öffnen Sie die Befehlspalette und geben Sie "Lizenzschlüssel aktivieren" ein. Alternativ können Sie den Dialog "Auf PRO upgraden" in einem SQLite Viewer-Tab öffnen, zum unteren Ende der Seite scrollen und auf "Enter License Key" klicken. Ein Eingabefeld wird am oberen Rand des VS Code-Fensters geöffnet. Fügen Sie den Lizenzschlüssel ein und drücken Sie die Eingabetaste. Ein Systemdialog bestätigt die Aktivierung innerhalb weniger Sekunden.
Kann ich die PRO-Version auf mehreren Geräten verwenden?
Es gibt einige Einschränkungen bei der Aktivierungshäufigkeit, aber diese dienen ausschließlich dazu, das Teilen/Veröffentlichen von Schlüsseln und andere Missbräuche zu verhindern. Die überwiegende Mehrheit der Kunden hat nie Probleme mit der Lizenzierung.
Wie funktioniert die Offline-Lizenzaktivierung?
Geräte, die über diese Methode registriert wurden, versuchen nie, sich mit dem Lizenzserver zu verbinden, vorausgesetzt, ein Business Edition-Schlüssel wurde verwendet und die "Business Edition-Evaluierung"-Checkbox beim Generieren des Tokens nicht aktiviert war.
- Die Offline-Aktivierung ist erforderlich, wenn eine Unternehmens-Firewall die Verbindung zur Lizenzserver verhindert.
- Sobald ein Gerät durch die Offline-Aktivierung registriert wurde, kann die Erweiterung ohne erneute Verbindung zum Lizenzserver genutzt werden.