O melhor editor SQLite é aquele no seu editor
Faça seu trabalho sem sair do VS Code. Desbloqueie poderosos recursos de edição e exportação. Funciona em qualquer lugar, incluindo SSH e WSL.

Atualize para desbloquear fluxos de trabalho PRO exclusivos
Com sua integração profunda no VS Code, SQLite Viewer PRO habilita novos fluxos de trabalho com conveniência e velocidade incomparáveis.
Redesenhado do zero para as demandas PRO
Você pode pensar na versão PRO como SQLite Viewer 2. Não são apenas flags de recursos, mas um motor completamente novo sob o capô. Vem com garantias de failover do SQLite e suporte para arquivos grandes.
Cliente SQLite Nativo
A versão PRO usa a implementação oficial do SQLite, que fornece o conjunto completo de garantias de failover. O antigo cliente somente leitura permanece como fallback.
Tamanho Ilimitado
Todas as restrições de tamanho de arquivo são removidas, mesmo durante sessões remotas. Apenas os dados necessários para renderizar a interface são transferidos para sua máquina local.
Experiência Sem Anúncios
Clientes PRO desfrutam de uma experiência sem anúncios — perfeita para compartilhamento de tela e gravações. Além disso, clientes PRO recebem um ícone PRO exclusivo () na interface.
Inclui tudo o que você gosta na versão gratuita
Atualizar para SQLite Viewer PRO é uma experiência perfeita. Basta inserir a chave de licença e você está pronto. Além de novos recursos PRO exclusivos, tudo o que você gosta na versão gratuita permanece como está.
Interface Performática
O SQLite Viewer é construído com foco em desempenho. Ele usa as melhores ferramentas que a pilha web tem a oferecer e é rotineiramente testado em hardware mais antigo para garantir que o desempenho permaneça de primeira linha.
Tema Correspondente
Diga adeus às interfaces de usuário desarticuladas. O SQLite Viewer ajusta-se automaticamente ao tema do VS Code e se integra perfeitamente à experiência existente do VS Code.
Configuração Fácil
O SQLite Viewer não depende de binários na sua máquina. Ele traz os seus próprios, de modo que simplesmente clicar em 'Instalar' completa a configuração. A extensão inteira pesa apenas 10 MB.
Funciona em Todo Lugar
Quer você esteja usando Cursor, VS Codium, CodeSandbox, GitPod, Google IDX ou outros forks do VS Code, o SQLite Viewer adapta-se ao seu ambiente e fornece o máximo de recursos possível.
Operado pelo Proprietário
O SQLite Viewer é desenvolvido por um único desenvolvedor dedicado. Ele desfruta de uma visão coerente e atenção aos detalhes que raramente é encontrada em produtos puramente comerciais.
Atualizações, entregues continuamente
SQLite Viewer PRO continua melhorando com atualizações regulares e novos recursos. Veja o que há de novo abaixo:
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.
Sem Assinatura, Sem Problema
O SQLite Viewer PRO é uma Compra Única e concede a você uma Licença Perpétua. Funciona enquanto o VS Code funcionar. Uma assinatura mensal também está disponível para projetos de curto prazo, ou se sua organização requer pagamentos recorrentes.
Os pedidos são processados pelo nosso revendedor online
Quer experimentar primeiro? Use a garantia de reembolso de 14 dias
Você pode avaliar o SQLite Viewer PRO por até duas semanas usando a garantia de reembolso de 14 dias. Para solicitar um reembolso, entre em contato com [email protected] com o e-mail usado na compra — sem necessidade de explicação.
Perguntas Frequentes
Como instalo a versão PRO após a compra?
Abra a Paleta de comandos e digite "Ativar Chave de Licença". Alternativamente, você pode abrir o diálogo "Atualizar para PRO" em uma aba do SQLite Viewer, rolar até o final da página e clicar em "Enter License Key". Um campo de entrada será aberto no topo da janela do VS Code. Cole a chave de licença e pressione enter. Um diálogo do sistema confirmará a ativação em alguns segundos.
Posso usar a versão PRO em múltiplos dispositivos?
Existem algumas restrições na frequência de ativação, mas estas estão apenas em vigor para prevenir compartilhamento/publicação de chaves e outros abusos. A grande maioria dos clientes nunca encontra problemas de licenciamento.
Como funciona a ativação de licença offline?
Dispositivos registrados através deste método nunca tentarão se conectar ao servidor de licença, desde que uma chave Business Edition tenha sido usada e a caixa "Avaliação Business Edition" não tenha sido marcada ao gerar o token.
- A ativação offline é necessária se um firewall corporativo impedir a extensão de se conectar ao servidor de licença.
- Quando um dispositivo é registrado através da ativação offline, a extensão pode ser usada sem precisar se reconectar ao servidor de licença.