Socket
Socket
Sign inDemoInstall

mssql

Package Overview
Dependencies
Maintainers
1
Versions
170
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mssql - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

4

CHANGELOG.txt

@@ -0,1 +1,5 @@

v2.1.1 (2015-02-25)
-------------------
[fix] Fix Promise in Prepared Statement
v2.1.0 (2015-02-20)

@@ -2,0 +6,0 @@ -------------------

4

lib/main.js

@@ -650,7 +650,7 @@ // Generated by CoffeeScript 1.9.0

return function(resolve, reject) {
return _this._execute(values, function(err) {
return _this._execute(values, function(err, recordset) {
if (err) {
return reject(err);
}
return resolve();
return resolve(recordset);
});

@@ -657,0 +657,0 @@ };

@@ -20,3 +20,3 @@ {

],
"version": "2.1.0",
"version": "2.1.1",
"main": "index.js",

@@ -23,0 +23,0 @@ "repository": {

@@ -1186,3 +1186,3 @@ # node-mssql [![Dependency Status](https://david-dm.org/patriksimek/node-mssql.png)](https://david-dm.org/patriksimek/node-mssql) [![NPM version](https://badge.fury.io/js/mssql.png)](http://badge.fury.io/js/mssql)

There are three type of errors you can handle:
There are four types of errors you can handle:

@@ -1189,0 +1189,0 @@ - **ConnectionError** - Errors related to connections and connection pool.

Sorry, the diff of this file is not supported yet

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