vscode-sql-notebook

Open SQL files as VSCode Notebooks.

MIT License

Stars
129

Bot releases are hidden (Show)

vscode-sql-notebook - v0.7.0 Latest Release

Published by cmoog about 1 year ago

Changelog

  • New: opt-in settings option for JSON cell output.
    • This allows you to configure custom cell renderers to interpret query output. For instance, an interactive table renderer.
  • Fix: improved date, datetime, timestamp display formatting for MySQL and PostgreSQL.
  • Dev: publish with source maps.

Credit to @lorefnon for this release!

All commits: https://github.com/cmoog/vscode-sql-notebook/compare/v0.6.2...v0.7.0

vscode-sql-notebook - v0.6.2

Published by cmoog about 1 year ago

A small patch release including updated dependencies and improved documentation.

Full Changelog: https://github.com/cmoog/vscode-sql-notebook/compare/v0.6.0...v0.6.2

vscode-sql-notebook - v0.6.0

Published by cmoog about 2 years ago

What's Changed

  • Support sqlite driver. Connect to on-disk SQLite files (or use :memory:).
    • The implementation uses the JS-only sql.js library. This may cause incompatibility with large
      database files on memory constrained devices. But, this avoids having to package native bindings
      for every platform and keeps the door open for in-browser support.

Full Changelog: https://github.com/cmoog/vscode-sql-notebook/compare/v0.5.3...v0.6.0

vscode-sql-notebook - v0.5.3

Published by cmoog over 2 years ago

What's Changed

Full Changelog: https://github.com/cmoog/vscode-sql-notebook/compare/v0.5.2...v0.5.3

vscode-sql-notebook - v0.5.2

Published by cmoog over 2 years ago

  • When clicking Run All, cells now execute in series. Previously, cells executed in parallel.

  • New configuration option for maximum number of result rows before truncating the result table.
    Defaults to 25.

{
  "SQLNotebook.maxResultRows": 25
}

Full Changelog: https://github.com/cmoog/vscode-sql-notebook/compare/v0.5.1...v0.5.2

vscode-sql-notebook - v0.5.1

Published by cmoog over 2 years ago

Fixes an issue with mysql table rendering for results that contained more than one row.

Full Changelog: https://github.com/cmoog/vscode-sql-notebook/compare/v0.5.0...v0.5.1

vscode-sql-notebook - v0.5.0

Published by cmoog over 2 years ago

New Features

  • Bundle sqls language server into vscode-sql-notebook.
    • When running on a compatible arch/os, notebooks can now
      benefit from intelligent autocomplete and hover information
      when connected to a valid database connection. To enable this unstable
      feature, add the following to your settings.json.
{
  "SQLNotebook.useLanguageServer": true
}
  • New configuration option for query timeout in milliseconds. Defaults to 30000.
{
  "SQLNotebook.queryTimeout": 30000
}

Commits

Full Commit Log: https://github.com/cmoog/vscode-sql-notebook/compare/v0.4.1...v0.5.0

vscode-sql-notebook - v0.4.1

Published by cmoog over 2 years ago

What's Changed

Full Changelog: https://github.com/cmoog/vscode-sql-notebook/compare/v0.3.1...v0.4.1

vscode-sql-notebook - v0.3.1

Published by cmoog almost 3 years ago

Security updates and documentation changes only.

https://github.com/cmoog/vscode-sql-notebook/compare/v0.3.0...v0.3.1

vscode-sql-notebook - v0.3.0

Published by cmoog almost 3 years ago

Support SSL configuration for MSSQL.

vscode-sql-notebook - v0.2.0

Published by cmoog almost 3 years ago

This release improves the UX when creating new connection configurations. Rather than the prior prompt-based flow, you can now use a webview form in the side bar, shown below.

vscode-sql-notebook -

Published by cmoog about 3 years ago

  • remove preview: true from manifest
  • fix newline escape behavior
vscode-sql-notebook -

Published by cmoog about 3 years ago

  • 2d3cc4f bump version
  • 73f51d2 fix: escape newline chars from query output (#3)
vscode-sql-notebook -

Published by cmoog about 3 years ago

Support for the postgres driver.

vscode-sql-notebook - v0.0.20

Published by cmoog about 3 years ago

Publish release asset.