@pi-r/oracle 0.6.10 → 0.6.11
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 +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +1 -1
package/client/index.js
CHANGED
|
@@ -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);
|
package/package.json
CHANGED
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
|
|