독점 PRO 워크플로를 잠금 해제하려면 업그레이드하세요
VS Code와의 깊은 통합으로 SQLite Viewer PRO는 비교할 수 없는 편의성과 속도로 새로운 워크플로를 가능하게 합니다.
PRO 요구사항에 맞춰 근본적으로 재설계
PRO 버전을 _SQLite Viewer 2_로 생각할 수 있습니다. 단순한 기능 플래그가 아니라 완전히 새로운 엔진이 내부에 있습니다. SQLite 장애 조치 보장과 대용량 파일 지원을 제공합니다.
네이티브 SQLite 클라이언트
PRO 버전은 공식 SQLite 구현을 사용하여 전체 장애 조치 보장을 제공합니다. 이전 읽기 전용 클라이언트는 백업으로 남아 있습니다.
무제한 파일 크기
파일 크기에 대한 모든 제한이 해제됩니다, 원격 세션 중에도. UI를 렌더링하는 데 필요한 데이터만 로컬 머신으로 전송됩니다.
광고 없는 경험
PRO 고객은 광고 없는 경험을 즐길 수 있습니다 — 화면 공유 및 녹화에 적합합니다. 또한, PRO 고객은 UI에서 독점적인 PRO 아이콘()을 받습니다.
무료 버전에서 좋아하는 모든 기능도 포함되어 있습니다
SQLite Viewer PRO로 업그레이드하는 것은 원활한 경험입니다. 라이선스 키만 입력하면 준비 완료입니다. 새로운 독점 PRO 기능 외에도 무료 버전에서 좋아하는 모든 기능이 그대로 유지됩니다.
성능 좋은 UI
SQLite Viewer는 성능을 염두에 두고 제작되었습니다. 웹 스택이 제공하는 최고의 도구를 사용하며, 구형 하드웨어에서도 정기적으로 테스트하여 성능이 최고 수준을 유지하도록 합니다.
일치하는 테마
불일치한 사용자 인터페이스와 작별하세요. SQLite Viewer는 자동으로 VS Code 테마에 맞춰 조정되어 기존 VS Code 경험에 원활하게 통합됩니다.
원클릭 설정
SQLite Viewer는 머신에 있는 바이너리에 의존하지 않습니다. 자체적으로 제공되므로 '설치'를 클릭하는 것만으로 설정이 완료됩니다. 전체 확장 프로그램의 크기는 10MB에 불과합니다.
어디서나 작동
Cursor, VS Codium, CodeSandbox, GitPod, Google IDX 또는 기타 VS Code 포크를 사용하든, SQLite Viewer는 환경에 맞춰 조정되어 가능한 많은 기능을 제공합니다.
개인 운영
SQLite Viewer는 단일, 헌신적인 개발자가 제작했습니다. 일관된 비전과 세부 사항에 대한 주의를 즐기며 순수 상업 제품에서는 드물게 발견됩니다.
업데이트, 지속적으로 제공
SQLite Viewer PRO는 정기적인 업데이트와 새로운 기능으로 계속 개선되고 있습니다. 아래에서 새로운 기능을 확인하세요:
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.
구독 없음, 문제 없음
SQLite Viewer PRO는 일회성 구매이며 영구 라이선스를 부여합니다. VS Code가 작동하는 한 작동합니다. 단기 프로젝트나 조직에서 정기 결제가 필요한 경우 월 구독도 이용할 수 있습니다.
주문은 당사의 온라인 리셀러
먼저 사용해보고 싶으신가요? 14일 환불 보장을 이용하세요
14일 환불 보장을 이용하여 SQLite Viewer PRO를 최대 2주 동안 평가할 수 있습니다. 환불을 요청하려면 결제에 사용된 이메일로 [email protected]으로 연락하세요 — 설명은 필요하지 않습니다.
자주 묻는 질문
구매 후 PRO 버전을 어떻게 설치하나요?
명령 팔레트를 열고 "라이선스 키 활성화"를 입력하세요. 또는 SQLite Viewer 탭 내에서 "PRO로 업그레이드" 대화 상자를 열고 페이지 하단으로 스크롤하여 "Enter License Key"를 클릭하세요. VS Code 창 상단에 입력 필드가 열립니다. 라이선스 키를 붙여넣고 Enter 키를 누르세요. 몇 초 내에 시스템 대화 상자가 활성화를 확인합니다.
PRO 버전을 여러 장치에서 사용할 수 있나요?
활성화 빈도에 대한 몇 가지 제한이 있지만, 이는 키 공유/게시 및 기타 남용을 방지하기 위해서만 설정되어 있습니다. 대부분의 고객은 라이선스 문제를 겪지 않습니다.
오프라인 라이선스 활성화는 어떻게 작동하나요?
이 방법으로 등록된 장치는 Business Edition 키가 사용되고 토큰 생성 시 "Business Edition 평가" 체크박스가 선택되지 않은 한 라이선스 서버에 연결을 시도하지 않습니다.
- 회사의 방화벽이 확장 프로그램이 라이선스 서버에 연결되는 것을 방지하는 경우 오프라인 활성화가 필요합니다.
- 오프라인 활성화를 통해 장치가 등록되면 확장 프로그램은 라이선스 서버에 다시 연결할 필요 없이 사용할 수 있습니다.