Comparing version 2.3.0 to 2.3.1
# 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 |
{ | ||
"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
265134