Socket
Socket
Sign inDemoInstall

hdb

Package Overview
Dependencies
Maintainers
2
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hdb - npm Package Compare versions

Comparing version 0.16.0 to 0.17.0

2

lib/protocol/ExecuteTask.js

@@ -124,2 +124,4 @@ // Copyright 2013 SAP AG.

}
this.reply.outputParameters = this.reply.outputParameters || reply.outputParameters;
if (reply.rowsAffected) {

@@ -126,0 +128,0 @@ if (this.reply.rowsAffected) {

2

lib/protocol/tcp.js

@@ -25,3 +25,3 @@ // Copyright 2013 SAP AG.

if ('key' in options || 'cert' in options || 'ca' in options || 'pfx' in
options) {
options || options.useTLS === true) {
createSocket = exports.createSecureSocket;

@@ -28,0 +28,0 @@ } else {

@@ -9,3 +9,3 @@ {

"description": "SAP HANA Database Client for Node",
"version": "0.16.0",
"version": "0.17.0",
"repository": {

@@ -12,0 +12,0 @@ "type": "git",

@@ -212,2 +212,13 @@ :heavy_exclamation_mark: Notice :heavy_exclamation_mark:

Use the `useTLS` option if you would like to connect to HANA using Node.js's trusted certificates.
```js
var client = hdb.createClient({
host : 'hostname',
port : 30015,
useTLS: true,
...
});
```
**Note** for MDC use cases: The system database and the target tenant database may be configured to work with different certificates.

@@ -214,0 +225,0 @@ If so, make sure to include all the necessary TLS-related properties for both the databases in the client's options.

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc