Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 634 Bytes

File metadata and controls

19 lines (12 loc) · 634 Bytes

SQLite Console

Local-only VS Code extension for CRUDing in a SQLite database.
This extension is built with no dependencies so no fear of supply chain attacks from transitory dependencies.

Requirements

  • sqlite3 CLI installed and available on PATH.

Usage

  • Open the folder in VS Code.
  • Click a .db, .sqlite, or .sqlite3 file to open the custom SQLite Console.
  • Use it to run queries, examine data, insert records, delete records, create views, etc...

Notes

  • Output uses tab-separated parsing; tabs within data will appear as column splits.
  • This extension executes SQL via the system sqlite3 command.