@pi-r/oracle 0.2.14 → 0.2.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/index.js +5 -4
- package/package.json +3 -3
package/client/index.js
CHANGED
|
@@ -169,9 +169,9 @@ async function executeBatchQuery(batch, options = '', outResult) {
|
|
|
169
169
|
return [];
|
|
170
170
|
}
|
|
171
171
|
const db = require("oracledb");
|
|
172
|
-
let parallel, connectOnce, errorQuery, sessionKey, outCacheMiss;
|
|
172
|
+
let parallel, connectOnce, errorQuery, errorAsEmpty, sessionKey, outCacheMiss;
|
|
173
173
|
if ((0, types_1.isPlainObject)(options)) {
|
|
174
|
-
({ parallel, connectOnce, errorQuery, sessionKey } = options);
|
|
174
|
+
({ parallel, connectOnce, errorQuery, errorAsEmpty, sessionKey, outCacheMiss } = options);
|
|
175
175
|
}
|
|
176
176
|
else {
|
|
177
177
|
if (typeof options === 'string') {
|
|
@@ -358,8 +358,9 @@ async function executeBatchQuery(batch, options = '', outResult) {
|
|
|
358
358
|
}
|
|
359
359
|
}
|
|
360
360
|
return this.processRows(batch, tasks, {
|
|
361
|
-
|
|
362
|
-
|
|
361
|
+
parallel,
|
|
362
|
+
errorAsEmpty,
|
|
363
|
+
disconnect: () => clients.forEach(item => item.close(err => err && this.writeFail(["Unable to close connnection", "oracle"], err, { type: 65536, fatal: false })))
|
|
363
364
|
}, outResult);
|
|
364
365
|
}
|
|
365
366
|
exports.executeBatchQuery = executeBatchQuery;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pi-r/oracle",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.15",
|
|
4
4
|
"description": "Oracle client driver for E-mc.",
|
|
5
5
|
"main": "client/index.js",
|
|
6
6
|
"types": "client/index.d.ts",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"homepage": "https://github.com/anpham6/pi-r#readme",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@e-mc/db": "^0.5.
|
|
25
|
-
"@e-mc/types": "^0.5.
|
|
24
|
+
"@e-mc/db": "^0.5.23",
|
|
25
|
+
"@e-mc/types": "^0.5.23",
|
|
26
26
|
"oracledb": "^5.5.0"
|
|
27
27
|
}
|
|
28
28
|
}
|