Skip to content

PyKhaled/vscode-sqlite

 
 

Repository files navigation

vscode-sqlite

VSCode extension to explore and query SQLite databases.

static/sqlite_workflow_1

Requirements

Windows, OS X

No requirements

Linux

sqlite3 installed in the system or sqlite3 binaries (at least version 3.9) that include the command line interface.

The extension will first look for the sqlite3 command (or the command/path specified in the sqlite.sqlite3 setting), if not found it will fallback to the binaries in this extension's bin folder.

Features

  • Query SQLite3 databases and view results in a table.

  • Export query results to json and csv.

  • Sidebar explorer: list databases, tables and columns.

Commands

  • SQLite: New Query   Create new untitled sql file.

  • SQLite: Run Query   Execute query script in the editor.

  • SQLite: Quick Query   Choose a database and execute a query without creating a new sql document.

  • SQLite: Use Database   Bind current sql document to the selected database.

  • SQLite: Open Database in Explorer   Open the selected database in the sidebar explorer.

  • SQLite: Close Explorer Database   Remove the selected database from the explorer.

Settings

  • "sqlite.sqlite3": <string>   sqlite3 command or binaries path.

  • "sqlite.autopick": <boolean>   Autopick database when there is only one choice.

  • "sqlite.logLevel": <string>   Set output channel log level (DEBUG, INFO, WARN, ERROR).

  • "sqlite.recordsPerPage": <number>   Number of records to show per page. (-1 to show all records).

  • "sqlite.outputBuffer": <number>   Query output buffer in bytes.

Known Issues

No known issues for now.

About

VSCode extension to explore and query SQLite databases.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 83.8%
  • JavaScript 9.6%
  • Smarty 3.9%
  • CSS 2.7%