@pi-r/oracle 0.6.10 → 0.6.12

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 CHANGED
@@ -228,9 +228,9 @@ async function executeBatchQuery(batch, options = '', outResult) {
228
228
  if (length === 0) {
229
229
  return [];
230
230
  }
231
- let parallel, connectOnce, errorQuery, sessionKey, outCacheMiss;
231
+ let parallel, connectOnce, errorQuery, errorAsEmpty, sessionKey, outCacheMiss;
232
232
  if ((0, types_1.isPlainObject)(options)) {
233
- ({ parallel, connectOnce, errorQuery, sessionKey } = options);
233
+ ({ parallel, connectOnce, errorQuery, errorAsEmpty, sessionKey, outCacheMiss } = options);
234
234
  }
235
235
  else {
236
236
  if (typeof options === 'string') {
@@ -365,7 +365,7 @@ async function executeBatchQuery(batch, options = '', outResult) {
365
365
  }
366
366
  const executeOptions = { outFormat: oracledb.OUT_FORMAT_OBJECT, ...clientOptions, resultSet: false, autoCommit: true };
367
367
  commandType = this.commandType.SELECT;
368
- if (streamRow) {
368
+ if (streamRow && (0, types_1.isString)(query)) {
369
369
  const rows = [];
370
370
  const processRow = typeof streamRow === 'function' && streamRow;
371
371
  const stream = client.queryStream(query, params || [], executeOptions);
@@ -421,8 +421,9 @@ async function executeBatchQuery(batch, options = '', outResult) {
421
421
  }
422
422
  }
423
423
  return this.processRows(batch, tasks, {
424
- disconnect: () => clients.forEach(item => item.close(err => err && this.writeFail(["Unable to close connnection", "oracle"], err, { type: 65536, fatal: false }))),
425
- parallel
424
+ parallel,
425
+ errorAsEmpty,
426
+ disconnect: () => clients.forEach(item => item.close(err => err && this.writeFail(["Unable to close connnection", "oracle"], err, { type: 65536, fatal: false })))
426
427
  }, outResult);
427
428
  }
428
429
  exports.executeBatchQuery = executeBatchQuery;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-r/oracle",
3
- "version": "0.6.10",
3
+ "version": "0.6.12",
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.8.29",
25
- "@e-mc/types": "^0.8.29",
24
+ "@e-mc/db": "^0.8.31",
25
+ "@e-mc/types": "^0.8.31",
26
26
  "oracledb": "^6.5.1"
27
27
  }
28
28
  }
package/types/index.d.ts CHANGED
@@ -5,7 +5,7 @@ import type { ExecuteAction, ServerAuth } from '@e-mc/types/lib/db';
5
5
  // @ts-ignore
6
6
  import type { BindParameters, ConnectionAttributes, ExecuteOptions, InitialiseOptions, PoolAttributes } from 'oracledb';
7
7
 
8
- export interface OracleDataSource extends DbDataSource<string, ExecuteOptions, unknown, string | OracleCredential, string>, ExecuteAction<BindParameters> {
8
+ export interface OracleDataSource extends DbDataSource<string | object, ExecuteOptions, unknown, string | OracleCredential, string>, ExecuteAction<BindParameters> {
9
9
  source: "oracle";
10
10
  }
11
11