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はパフォーマンスを重視して設計されています。Webスタックの最高のツールを使用し、 古いハードウェアでも定期的にテストされ、パフォーマンスがトップレベルに保たれます。
テーマに合わせたデザイン
一貫性のないユーザーインターフェースとはおさらばです。SQLite ViewerはVS Codeのテーマに自動的に適応し、 既存のVS Code体験にシームレスに統合されます。
ワンクリックセットアップ
SQLite Viewerはマシン上のバイナリに依存しません。独自のバイナリを持ち、「インストール」をクリックするだけでセットアップが完了します。 拡張機能全体のサイズはわずか10 MBです。
どこでも動作
Cursor、VS Codium、CodeSandbox、GitPod、Google IDX、その他のVS Codeフォークを使用している場合でも、 SQLite Viewerは環境に適応し、可能な限り多くの機能を提供します。
オーナー運営
SQLite Viewerは1人の専任開発者によって作成されています。一貫したビジョンと細部へのこだわりがあり、 純粋に商業的な製品ではめったに見られません。
更新、継続的に配信
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日間の返金保証を利用してください
SQLite Viewer PROを最大2週間評価し、14日間の返金保証を利用できます。 返金をリクエストするには、購入時に使用したメールアドレスで[email protected]に連絡してください。説明は不要です。
よくある質問
購入後にPROバージョンをインストールするにはどうすればよいですか?
コマンドパレットを開き、"ライセンスキーをアクティブ化"と入力します。あるいは、SQLite Viewerタブ内の"PROにアップグレード"ダイアログを開き、 ページの下部までスクロールして"Enter License Key"をクリックします。VS Codeウィンドウの上部に入力フィールドが表示されます。 ライセンスキーを貼り付けてEnterキーを押します。数秒以内にシステムダイアログがアクティベーションを確認します。
PROバージョンを複数のデバイスで使用できますか?
アクティベーション頻度にいくつかの制限がありますが、これらはキーの共有/公開やその他の悪用を防ぐためだけに設けられています。 大多数のお客様はライセンスの問題に遭遇することはありません。
オフラインライセンス認証はどのように機能しますか?
この方法で登録されたデバイスは、Business Editionキーが使用され、トークン生成時に"Business Edition評価"チェックボックスがチェックされていない限り、 ライセンスサーバーへの接続を試行することはありません。
- 企業のファイアウォールがライセンスサーバーへの接続を妨げる場合、オフラインアクティベーションが必要です。
- デバイスがオフラインアクティベーションを通じて登録されると、ライセンスサーバーに再接続することなく拡張機能を使用できます。