node-oracledb/examples/selectstream.js

101 lines
2.8 KiB
JavaScript
Raw Normal View History

/* Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. */
2016-03-24 18:18:16 +08:00
/******************************************************************************
*
* You may not use the identified files except in compliance with the Apache
* License, Version 2.0 (the "License.")
*
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* See the License for the specific language governing permissions and
* limitations under the License.
*
* NAME
* selectstream.js
*
* DESCRIPTION
* Executes a basic query using a Readable Stream.
*
* This example requires node-oracledb 1.8 or later.
*
* This example uses Node 8's async/await syntax.
*
2016-03-24 18:18:16 +08:00
*****************************************************************************/
const oracledb = require('oracledb');
const dbConfig = require('./dbconfig.js');
2019-11-19 10:26:03 +08:00
const demoSetup = require('./demosetup.js');
2016-03-24 18:18:16 +08:00
async function run() {
let connection;
try {
connection = await oracledb.getConnection(dbConfig);
2016-03-24 18:18:16 +08:00
2019-11-19 10:26:03 +08:00
await demoSetup.setupBf(connection); // create the demo table
const stream = await connection.queryStream(
2019-11-19 10:26:03 +08:00
`SELECT farmer, weight
FROM no_banana_farmer
ORDER BY id`,
[], // no binds
{
prefetchRows: 150, // internal buffer sizes can be adjusted for performance tuning
fetchArraySize: 150
}
2016-03-24 18:18:16 +08:00
);
2019-05-28 15:51:53 +08:00
const consumeStream = new Promise((resolve, reject) => {
let rowcount = 0;
2016-03-24 18:18:16 +08:00
stream.on('error', function(error) {
// console.log("stream 'error' event");
reject(error);
});
2016-03-24 18:18:16 +08:00
stream.on('metadata', function(metadata) {
// console.log("stream 'metadata' event");
console.log(metadata);
});
2016-03-24 18:18:16 +08:00
stream.on('data', function(data) {
// console.log("stream 'data' event");
console.log(data);
rowcount++;
});
stream.on('end', function() {
// console.log("stream 'end' event"); // all data has been fetched
stream.destroy(); // clean up resources being used
});
stream.on('close', function() {
// console.log("stream 'close' event");
// The underlying ResultSet has been closed, so the connection can now
// be closed, if desired. Note: do not close connections on 'end'.
resolve(rowcount);
});
2016-03-24 18:18:16 +08:00
});
const numrows = await consumeStream;
console.log('Rows selected: ' + numrows);
} catch (err) {
console.error(err);
} finally {
if (connection) {
try {
await connection.close();
} catch (err) {
console.error(err);
}
}
}
}
run();