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.12.2 to 0.12.3

4

lib/protocol/ExecuteTask.js

@@ -136,2 +136,3 @@ // Copyright 2013 SAP AG.

var bytesWritten = 0;
var row = 0;
var args = [];

@@ -161,5 +162,6 @@

try {
++row;
self.writer.setValues(self.parameterValues.shift());
} catch (err) {
return cb(err);
return cb(new Error('Cannon set parameter at row: ' + row + '. ' + err.message));
}

@@ -166,0 +168,0 @@ }

@@ -447,2 +447,5 @@ // Copyright 2013 SAP AG.

Writer.prototype[TypeCode.BINARY] = function writeBinary(value) {
if (!Buffer.isBuffer(value)) {
throw createInputError('BINARY');
}
this.push(createBinaryOutBuffer(TypeCode.BINARY, value));

@@ -449,0 +452,0 @@ };

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

"description": "SAP HANA Database Client for Node",
"version": "0.12.2",
"version": "0.12.3",
"repository": {

@@ -33,13 +33,13 @@ "type": "git",

"dependencies": {
"iconv-lite": "^0.4.15"
"iconv-lite": "^0.4.18"
},
"devDependencies": {
"async": "^2.0.1",
"async": "^2.4.1",
"chrome-net": "^3.3.0",
"concat-stream": "^1.5.1",
"coveralls": "^2.11.11",
"fstream": "^1.0.10",
"coveralls": "^2.13.1",
"fstream": "^1.0.11",
"generic-pool": "^2.4.2",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"mocha": "^3.4.2",
"should": "^10.0.0"

@@ -46,0 +46,0 @@ },

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