Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

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.2.1 to 1.3.0

5

CHANGELOG.txt

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

v1.3.0 (2014-10-27)
-------------------
[change] Updated to latest Tedious 1.7.0
[new] Tedious: Char and NChar types are now available as input parameters
v1.2.1 (2014-10-07)

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

3

lib/table.js

@@ -28,2 +28,5 @@ // Generated by CoffeeScript 1.7.1

}
if (column == null) {
throw new Error("Column data type is not defined.");
}
if (column instanceof Function) {

@@ -30,0 +33,0 @@ column = column();

4

lib/tedious.js

@@ -73,5 +73,5 @@ // Generated by CoffeeScript 1.7.1

case TYPES.Char:
return tds.TYPES.VarChar;
return tds.TYPES.Char;
case TYPES.NChar:
return tds.TYPES.NVarChar;
return tds.TYPES.NChar;
case TYPES.NText:

@@ -78,0 +78,0 @@ return tds.TYPES.NVarChar;

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

],
"version": "1.2.1",
"version": "1.3.0",
"main": "index.js",

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

"dependencies": {
"tedious": "^1.5.3",
"tedious": "^1.7.0",
"generic-pool": "^2.0.4"

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

@@ -7,3 +7,4 @@ # 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 is also [co](https://github.com/visionmedia/co) wrapper available - [co-mssql](https://github.com/patriksimek/co-mssql).
There is also [co](https://github.com/visionmedia/co) wrapper available - [co-mssql](https://github.com/patriksimek/co-mssql).
If you're looking for session store for connect/express, visit [connect-mssql](https://github.com/patriksimek/connect-mssql).

@@ -22,5 +23,6 @@ **Extra features:**

## What's new in 1.2.x (stable, npm)
## What's new in 1.3.x (stable, npm)
- Updated to latest Tedious 1.5.x
- Updated to latest Tedious 1.7.x
- Tedious: Char and NChar types are now available as input parameters

@@ -1212,3 +1214,2 @@ ## Installation

- There is a serious problem with errors during transactions - [reported here](https://github.com/patriksimek/node-mssql/issues/77).
- msnodesql 0.2.1 contains bug in DateTimeOffset ([reported](https://github.com/WindowsAzure/node-sqlserver/issues/160))

@@ -1215,0 +1216,0 @@ - msnodesql 0.2.1 doesn't support TVP data type.

Sorry, the diff of this file is not supported yet

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