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は定期的なアップデートと新機能で常に改善されています。以下で新機能をご確認ください:
v26.2.1 Preview
Additions
PRO When adding columns to an empty table that references another table's composite primary key, the table now uses a single table-levelFOREIGN KEYconstraint instead of inlineREFERENCESon each column
Fixes
- Add Table, Add Column, Drop Table, and drop column actions are now disabled when the database is read-only instead of throwing an error
- 'Without Row ID' and 'Strict' options in the table info panel are now disabled when using the Free Version
PRO Fixes a bug when adding aPRIMARY KEYcolumn without specifying a column typePRO Dropping a column that is part of a composite primary key no longer failsPRO Fixed renaming of columns that are part of a composite primary keyPRO Fixed reordering columns when renaming in an empty tablePRO Fixed JSONB default values when adding or editing columnsPRO Fixed over-escaping of quotes in generated SQL in certain instances
v26.2.0 Preview
PRO Table and Column Creation
You can add columns to existing tables, drop columns or entire tables, and edit column definitions when the table is empty.
- Add column: New columns can be added to any table from the column header. Tables that already contain rows use
ALTER TABLE ... ADD COLUMN; empty tables may be recreated to apply the change. - Drop column: Columns can be removed from a table via the trash icon next to each column in the table info panel. Uses
ALTER TABLE ... DROP COLUMN. - Drop table: An entire table can be dropped from the database via the "Drop table" action in the table info panel.
- Edit column (empty tables): For tables with no rows, you can edit column name, type, and constraints (
NOT NULL,UNIQUE, defaults, check, foreign key, etc.) and reorder columns. The table is recreated so all schema changes are applied.
PRO Antifreeze Update
Long-running SQLite operations are now automatically cancelled when you navigate to a different view, so the UI stays responsive.
Improved Keyboard Selection
You can now select multiple rows using the keyboard by holding down shift while moving up/down using arrow keys.
Pressing Enter while a cell is selected will trigger the same action as double clicking it. Pressing Escape will unselect all rows.
PRO Pressing Backspace while a data cell is focused sets that cell toNULLvia the same update path as the cell editor. Pressing Delete (or Cmd/Ctrl+Backspace) deletes the selected row(s).
Row Selection Undo History
Row selection now has a undo history. You can now use standard keyboard shortcuts to revert to a previous row selection. This should be useful when accidentally deselecting.
In order to avoid clogging up VS Code's undo history, the selection history is kept separate and cleared when a real document edit takes place.
PRO Text Input Undo History
Text fields in the app now have their own local undo and redo history. This means you can use standard shortcuts to undo or redo changes made while editing an input, independent of the database history.
Additions
PRO When deleting row(s) fails due to a foreign key constraint, the error toast now offers a button to enable defer foreign keys and retry the delete.- Now showing row numbers for each table in the table explorer
PRO Added dedicated UI for inputting booleansPRO Added filter search box to the pragma editorPRO Can now insert empty rows iff all columns have default values or are nullablePRO Can now open empty files with the viewer and they will be initialized as a SQLite databases
Changes
- Any column type with "bool" in the name will now be interpreted as boolean
PRO Database transaction now is closed (viaCOMMITorROLLBACK) when you return to the last saved state via undo/redo
Fixes
- Fixed an issue that prevented dialog modals from opening after clicking an external link
- When resizing columns, shrinking them no longer shrinks viewport along with it
- Fixed tabbing to 'Copy to Clipboard' button in text areas
- Fixed dropped tables showing up in the sidebar even after refresh
PRO Fixed an issue related to undoing row inserts in tables that have Row IDs.PRO Fixed incorrect bindings in undo statements when deleting rows containing null valuesPRO Fixed issues relating to undo/redo after file savePRO Fixed an issue in instant commit mode that occurred when trying to redo operations that can't be undone
Theming
- Fixed selected row background color missing in certain themes like Catpuccin
- Using
focusBorderas a fallback focus outline for themes that don't definelist.focusOutline(e.g. Catpuccin) - Fixed row selection borders missing in high contrast themes
v25.12.3 Preview
Improved theme integration
The extension should now adjust better to many popular themes, but unexpected changes or even regressions are possible.
- Fixed missing background color for selected rows in certain themes like Catppuccin.
- Changed most border colors to use
sideBar.borderinstead oftab.border, which more closely matches the intent of most themes. - Fixed an issue where a "border" (i.e., gap) would appear in themes that set the border color to transparent.
- Changed muted color to always use 50% opacity of regular text instead of
list.deemphasizedForeground, as many themes don't provide a good value for it. High-contrast themes are exempt from this. - Fixed invisible focus outline in themes that don't define
list.focusOutlineby falling back to alternative theme colors suitable for outlines. - Fixed row selection borders missing in high-contrast themes.
- Improved row hover state in high-contrast themes.
- Improved checkout page theme integration.
v25.12.2
Promoted version 25.12.1 to main channel. If you encounter any issues, you can revert to the prior stable version, v0.10.6.
Major new features from the pre-release branch are included in this update:
v25.12.1 Preview
PRO Fixed an issue that caused the standard icon (blue) to be displayed instead of the PRO icon- Fixed a potential crash when reloading a database
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にアップグレード"ダイアログを開き、 ページの下部までスクロールして"ライセンスキーを入力"をクリックします。VS Codeウィンドウの上部に入力フィールドが表示されます。 ライセンスキーを貼り付けてEnterキーを押します。数秒以内にシステムダイアログがアクティベーションを確認します。
PROバージョンを複数のデバイスで使用できますか?
アクティベーション頻度にいくつかの制限がありますが、これらはキーの共有/公開やその他の悪用を防ぐためだけに設けられています。 大多数のお客様はライセンスの問題に遭遇することはありません。
オフラインライセンス認証はどのように機能しますか?
この方法で登録されたデバイスは、Business Editionキーが使用され、トークン生成時に"Business Edition評価"チェックボックスがチェックされていない限り、 ライセンスサーバーへの接続を試行することはありません。
- 企業のファイアウォールがライセンスサーバーへの接続を妨げる場合、オフラインアクティベーションが必要です。
- デバイスがオフラインアクティベーションを通じて登録されると、ライセンスサーバーに再接続することなく拡張機能を使用できます。