New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

odbc

Package Overview
Dependencies
Maintainers
3
Versions
86
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

odbc - npm Package Compare versions

Comparing version 2.3.0 to 2.3.1

4

CHANGELOG.md
# Changelog
All notable changes to this project will be documented in this file.
## [2.3.1] - 2020-07-24
### Fixed
- Fixed bug with `callProcedure` on big-endian systems
## [2.3.0] - 2020-05-21

@@ -5,0 +9,0 @@ ### Added

2

package.json
{
"name": "odbc",
"description": "unixodbc bindings for node",
"version": "2.3.0",
"version": "2.3.1",
"homepage": "http://github.com/markdirish/node-odbc/",

@@ -6,0 +6,0 @@ "main": "lib/odbc.js",

@@ -227,3 +227,3 @@ node-odbc

const odbc = require('odbc');
const connection = odbc.connect(connectionString (error, connection) => {
const connection = odbc.connect(connectionString, (error, connection) => {
connection.query('SELECT * FROM QIWS.QCUSTCDT', (error, result) => {

@@ -658,3 +658,3 @@ if (error) { console.error(error) }

* `initialSize`: The initial number of Connections created in the Pool
* `incrementSzie`: How many additional Connections to create when all of the Pool's connections are taken
* `incrementSize`: How many additional Connections to create when all of the Pool's connections are taken
* `maxSize`: The maximum number of open Connections the Pool will create

@@ -661,0 +661,0 @@ * `shrink`: Whether or not the number of Connections should shrink to `initialSize` as they free up

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