Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,26 @@ The driver depends on node package ibm_db. For supported architectures above, th

For Windows machines, it will be installed in the following directory:

`C:\Users\user\AppData\Local\Code\...`
`C:\Users\<username>\AppData\Local\vscode-sqltools\Data`

You may also be prompted to enable a setting within SQLTools to acknowledge node runtime. Please select to enable. This is required for the driver to work. The purpose of this is to look on your machine for an up to date version of node to use as the runtime. The extension was built on the latest stable version of node (v23.4.0).

## Issues

Please submit any issues to: `https://github.com/lucashancock/db2-sqltools/issues`
Please submit any issues to: [github issues](https://github.com/lucashancock/db2-sqltools/issues)

## Requirements

- VSCode version 1.96.0 or above
- Latest stable node version (tested v23.4.0)
- Latest stable npm version (tested v10.9.2)
- VS Code (tested 1.96.0)
- node (tested v23.4.0)
- npm (tested v10.9.2)
- make
- gcc
- g++
- Linux: libxcrypt-compat
- Mac/Linux: libcrypt

**See [npm ibm_db page](https://github.com/lucashancock/db2-sqltools/blob/HEAD/npmjs.com/package/ibm_db) for more documentation about prerequisites**

## FAQ

Expand Down
4 changes: 4 additions & 0 deletions connection.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@
"title": "Port",
"type": "integer",
"minimum": 1
},
"connectionInitSql": {
"title": "Connection init SQL (runs once on connect; separate statements with ;)",
"type": "string"
}
},
"required": ["server", "port", "username", "database", "password"]
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "db2-sqltools",
"displayName": "Db2 Driver for SQLTools",
"description": "Db2 database integration with SQLTools extension for VSCode.",
"version": "0.0.3",
"version": "0.0.4",
"engines": {
"vscode": "^1.96.0"
},
Expand All @@ -24,7 +24,8 @@
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
"watch": "tsc -watch -p ./",
"pack:release": "vsce package"
},
"keywords": [
"db2",
Expand Down
Loading