simple-oracledb
Advanced tools
Comparing version 0.0.17 to 0.0.18
'use strict'; | ||
var async = require('async'); | ||
var asyncLib = require('async'); | ||
var stream = require('./stream'); | ||
@@ -109,3 +109,3 @@ var constants = require('./constants'); | ||
async.parallel(functions, function onAyncDone(error) { | ||
asyncLib.parallel(functions, function onAyncDone(error) { | ||
callback(error, jsObject); | ||
@@ -112,0 +112,0 @@ }); |
'use strict'; | ||
var async = require('async'); | ||
var asyncLib = require('async'); | ||
var stream = require('./stream'); | ||
@@ -45,3 +45,3 @@ | ||
async.parallel(functions, callback); | ||
asyncLib.parallel(functions, callback); | ||
}; | ||
@@ -77,5 +77,5 @@ | ||
async.parallel(functions, callback); | ||
asyncLib.parallel(functions, callback); | ||
}; | ||
module.exports = new RecordWriter(); |
'use strict'; | ||
var async = require('async'); | ||
var asyncLib = require('async'); | ||
var recordReader = require('./record-reader'); | ||
@@ -48,3 +48,3 @@ | ||
async.parallel(functions, function onAyncDone(error) { | ||
asyncLib.parallel(functions, function onAyncDone(error) { | ||
callback(error, jsRows); | ||
@@ -51,0 +51,0 @@ }); |
{ | ||
"name": "simple-oracledb", | ||
"version": "0.0.17", | ||
"version": "0.0.18", | ||
"description": "Extend capabilities of oracledb with simplified API for quicker development.", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -325,2 +325,3 @@ # simple-oracledb | ||
| ----------- | ------- | ----------- | | ||
| 2015-11-17 | v0.0.18 | Maintenance | | ||
| 2015-11-17 | v0.0.17 | Added pool.getConnection automatic retry | | ||
@@ -327,0 +328,0 @@ | 2015-11-15 | v0.0.16 | Added connection.batchInsert and connection.rollback | |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
272400
341