File tree Expand file tree Collapse file tree 3 files changed +17
-9
lines changed
Expand file tree Collapse file tree 3 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3- All notable changes to the "sqlrunner" extension will be documented in this file.
3+ SQLRunner version is versioned following [ semver] ( https://semver.org ) . All new
4+ features and stuff go under ` Added ` , All fixes go under ` Fixed ` , deprecated
5+ and removed features go under ` Deprecated ` and ` Removed ` respectively.
46
57## [ Unreleased]
68
9+ ## [ 0.0.1] - 2020-12-29
10+
711### Added
812
913- MySQL connection adapter
Original file line number Diff line number Diff line change @@ -4,26 +4,28 @@ Run SQL queries directly from VS Code.
44
55## Features
66
7- TODO
7+ - Querying on MySQL/MariaDB databases
8+ - Querying on Postgres databases
89
910## Requirements
1011
1112TODO
1213
13- ## Extension Settings
14+ ## Installation
15+
16+ Grab a release from the [ releases] ( https://github.com/kwalter94/sqlrunner/releases )
17+ page and install it as follows:
1418
15- Include if your extension adds any VS Code settings through the ` contributes.configuration ` extension point.
1619
17- For example:
20+ ``` bash
1821
19- This extension contributes the following settings:
22+ code --install-extension sqlrunner-x.x.x.vsix
2023
21- * ` myExtension.enable ` : enable/disable this extension
22- * ` myExtension.thing ` : set to ` blah ` to do something
24+ ```
2325
2426## Known Issues
2527
26- TODO
28+ - URLs with formats different from ` dbms://username:password@host:port/database ` are not supported.
2729
2830## Release Notes
2931
Original file line number Diff line number Diff line change 22 "name" : " sqlrunner" ,
33 "displayName" : " SqlRunner" ,
44 "description" : " Run some SQL in MySQL client." ,
5+ "publisher" : " kwalter94" ,
6+ "repository" : " https://github.com/kwalter94/sqlrunner" ,
57 "version" : " 0.0.1" ,
68 "engines" : {
79 "vscode" : " ^1.50.0"
You can’t perform that action at this time.
0 commit comments