@pi-r/oracle 0.5.7 → 0.5.8
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
|
@@ -171,9 +171,9 @@ async function executeBatchQuery(batch, options = '', outResult) {
|
|
|
171
171
|
if (length === 0) {
|
|
172
172
|
return [];
|
|
173
173
|
}
|
|
174
|
-
let parallel, connectOnce, errorQuery, sessionKey, outCacheMiss;
|
|
174
|
+
let parallel, connectOnce, errorQuery, errorAsEmpty, sessionKey, outCacheMiss;
|
|
175
175
|
if ((0, types_1.isPlainObject)(options)) {
|
|
176
|
-
({ parallel, connectOnce, errorQuery, sessionKey } = options);
|
|
176
|
+
({ parallel, connectOnce, errorQuery, errorAsEmpty, sessionKey, outCacheMiss } = options);
|
|
177
177
|
}
|
|
178
178
|
else {
|
|
179
179
|
if (typeof options === 'string') {
|
|
@@ -360,8 +360,9 @@ async function executeBatchQuery(batch, options = '', outResult) {
|
|
|
360
360
|
}
|
|
361
361
|
}
|
|
362
362
|
return this.processRows(batch, tasks, {
|
|
363
|
-
|
|
364
|
-
|
|
363
|
+
parallel,
|
|
364
|
+
errorAsEmpty,
|
|
365
|
+
disconnect: () => clients.forEach(item => item.close(err => err && this.writeFail(["Unable to close connnection", "oracle"], err, { type: 65536, fatal: false })))
|
|
365
366
|
}, outResult);
|
|
366
367
|
}
|
|
367
368
|
exports.executeBatchQuery = executeBatchQuery;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pi-r/oracle",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.8",
|
|
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.7.
|
|
25
|
-
"@e-mc/types": "^0.7.
|
|
24
|
+
"@e-mc/db": "^0.7.25",
|
|
25
|
+
"@e-mc/types": "^0.7.25",
|
|
26
26
|
"oracledb": "^6.5.0"
|
|
27
27
|
}
|
|
28
28
|
}
|