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 1.0.2 to 1.1.0

5

CHANGELOG.txt

@@ -0,1 +1,6 @@

v1.1.0 (2014-07-13)
-------------------
[change] Updated to latest Tedious 1.1.0
[new] Added support for domain logins (NTLM)
v1.0.2 (2014-07-04)

@@ -2,0 +7,0 @@ -------------------

3

lib/tedious.js

@@ -272,3 +272,4 @@ // Generated by CoffeeScript 1.7.1

server: config.server,
options: config.options
options: config.options,
domain: config.domain
};

@@ -275,0 +276,0 @@ if ((_base = cfg.options).database == null) {

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

],
"version": "1.0.2",
"version": "1.1.0",
"main": "index.js",

@@ -34,3 +34,3 @@ "repository": {

"dependencies": {
"tedious": "^1.0.0",
"tedious": "^1.1.0",
"generic-pool": "^2.0.4"

@@ -37,0 +37,0 @@ },

@@ -23,4 +23,5 @@ # 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)

- Updated to latest Tedious 1.0.0
- Updated to latest Tedious 1.1.0
- Added support for [Streaming](#streaming)
- Added support for domain logins (NTLM)
- Added [batch](#batch) command to execute special command like `create procedure`

@@ -130,2 +131,3 @@ - Added option to set request timeout (`config.requestTimeout = 15000`)

database: '...',
stream: true, // You can enable streaming globally

@@ -237,2 +239,3 @@ options: {

- **port** - Port to connect to (default: `1433`). Don't set when connecting to named instance.
- **domain** - Once you set domain, driver will connect to SQL Server using domain login.
- **database** - Database to connect to (default: dependent on server configuration).

@@ -239,0 +242,0 @@ - **connectionTimeout** - Connection timeout in ms (default: `15000`).

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