El mejor editor de SQLite es el que está en tu editor
Realiza tu trabajo sin salir de VS Code. Desbloquea potentes funciones de edición y exportación. Funciona en cualquier lugar, incluyendo SSH y WSL.

Actualiza para desbloquear flujos de trabajo PRO exclusivos
Con su profunda integración en VS Code, SQLite Viewer PRO habilita nuevos flujos de trabajo con una conveniencia y velocidad inigualables.
Rediseñado desde cero para las demandas PRO
Puedes pensar en la versión PRO como SQLite Viewer 2. No son solo banderas de características, sino un motor completamente nuevo bajo el capó. Viene con garantías de failover de SQLite y soporte para archivos grandes.
Cliente SQLite Nativo
La versión PRO utiliza la implementación oficial de SQLite, que proporciona el conjunto completo de garantías de failover. El antiguo cliente de solo lectura permanece como respaldo.
Tamaño de archivo ilimitado
Se eliminan todas las restricciones sobre el tamaño del archivo, incluso durante sesiones remotas. Solo los datos necesarios para renderizar la interfaz se transfieren a tu máquina local.
Experiencia sin anuncios
Los clientes PRO disfrutan de una experiencia sin anuncios — perfecta para compartir pantalla y grabaciones. Además, los clientes PRO reciben un icono PRO exclusivo () en la interfaz.
Incluye todo lo que te gusta de la versión gratuita
Actualizar a SQLite Viewer PRO es una experiencia fluida. Solo ingresa la clave de licencia y estás listo. Además de nuevas y exclusivas funciones PRO, todo lo que te gusta de la versión gratuita permanece igual.
UI de alto rendimiento
SQLite Viewer está construido pensando en el rendimiento. Utiliza las mejores herramientas que ofrece la pila web y se prueba rutinariamente en hardware más antiguo para garantizar que el rendimiento siga siendo de primera clase.
Tema coincidente
Di adiós a las interfaces de usuario desarticuladas. SQLite Viewer se ajusta automáticamente a tu tema de VS Code y se integra perfectamente en la experiencia existente de VS Code.
Configuración con un clic
SQLite Viewer no depende de binarios en tu máquina. Trae los suyos propios, de modo que simplemente haciendo clic en 'Instalar' se completa la configuración. Toda la extensión pesa solo 10 MB.
Funciona en cualquier lugar
Ya sea que estés usando Cursor, VS Codium, CodeSandbox, GitPod, Google IDX u otros forks de VS Code, SQLite Viewer se adapta a su entorno y proporciona tantas funciones como sea posible.
Operado por el propietario
SQLite Viewer está creado por un único desarrollador dedicado. Disfruta de una visión coherente y atención al detalle que rara vez se encuentra en productos puramente comerciales.
Actualizaciones, entregadas continuamente
SQLite Viewer PRO sigue mejorando con actualizaciones regulares y nuevas funciones. Mira qué hay de nuevo a continuación:
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.
Sin suscripción, sin problema
SQLite Viewer PRO es una Compra Única y te otorga una Licencia Perpetua. Funciona mientras VS Code funcione. Una suscripción mensual también está disponible para proyectos a corto plazo, o si su organización requiere pagos recurrentes.
- Funciones de edición y exportación
- Experiencia sin anuncios
-
Icono PRO exclusivo (
)
- Funciones de edición y exportación
- Experiencia sin anuncios
-
Icono PRO exclusivo (
)
- Activación de licencia offline1
- Sin revalidación de licencia2
Los pedidos son procesados por nuestro revendedor en línea
¿Quieres probarlo primero? Usa la garantía de reembolso de 14 días
Puedes evaluar SQLite Viewer PRO durante hasta dos semanas utilizando la garantía de reembolso de 14 días. Para solicitar un reembolso, contacta a [email protected] con el correo electrónico utilizado en la compra — no se necesita explicación.
Preguntas Frecuentes
¿Cómo instalo la versión PRO después de la compra?
Abre la Paleta de comandos y escribe "Activar Clave de Licencia". Alternativamente, puedes abrir el diálogo "Actualizar a PRO" en una pestaña de SQLite Viewer, desplazarte hasta el final de la página y hacer clic en "Enter License Key". Se abrirá un campo de entrada en la parte superior de la ventana de VS Code. Pega la clave de licencia y presiona enter. Un diálogo del sistema confirmará la activación en unos segundos.
¿Puedo usar la versión PRO en múltiples dispositivos?
Hay algunas restricciones en la frecuencia de activación, pero estas están únicamente en su lugar para prevenir el intercambio/publicación de claves y otros abusos. La gran mayoría de los clientes nunca encuentran problemas de licenciamiento.
¿Cómo funciona la activación de licencia offline?
Los dispositivos registrados a través de este método nunca intentarán conectarse al servidor de licencias, siempre que se haya usado una clave Business Edition y la casilla "Evaluación Business Edition" no haya sido marcada al generar el token.
- La activación offline es necesaria si un firewall corporativo impide que la extensión se conecte al servidor de licencias.
- Cuando un dispositivo se registra a través de la activación offline, la extensión se puede usar sin necesidad de volver a conectarse al servidor de licencias.