92 lines
2.7 KiB
JavaScript
92 lines
2.7 KiB
JavaScript
/* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved. */
|
|
|
|
/******************************************************************************
|
|
*
|
|
* 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
|
|
* select1.js
|
|
*
|
|
* DESCRIPTION
|
|
* Executes a basic query without using a connection pool or ResultSet.
|
|
* Uses Oracle's sample HR schema.
|
|
*
|
|
* Scripts to create the HR schema can be found at:
|
|
* https://github.com/oracle/db-sample-schemas
|
|
*
|
|
* For a connection pool example see connectionpool.js
|
|
* For a ResultSet example see resultset2.js
|
|
* For a query stream example see selectstream.js
|
|
*
|
|
* This example uses Node 8's async/await syntax.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
'use strict';
|
|
|
|
const oracledb = require('oracledb');
|
|
const dbConfig = require('./dbconfig.js');
|
|
|
|
async function run() {
|
|
|
|
let connection;
|
|
|
|
try {
|
|
// Get a non-pooled connection
|
|
|
|
connection = await oracledb.getConnection( {
|
|
user : dbConfig.user,
|
|
password : dbConfig.password,
|
|
connectString: dbConfig.connectString
|
|
});
|
|
|
|
const result = await connection.execute(
|
|
// The statement to execute
|
|
`SELECT department_id, department_name
|
|
FROM departments
|
|
WHERE department_id = :id`,
|
|
|
|
// The "bind value" 180 for the bind variable ":id"
|
|
[180],
|
|
|
|
// Options argument. Since the query only returns one
|
|
// row, we can optimize memory usage by reducing the default
|
|
// maxRows value. For the complete list of other options see
|
|
// the documentation.
|
|
{
|
|
maxRows: 1
|
|
//, outFormat: oracledb.OUT_FORMAT_OBJECT // query result format
|
|
//, extendedMetaData: true // get extra metadata
|
|
//, fetchArraySize: 100 // internal buffer allocation size for tuning
|
|
});
|
|
|
|
console.log(result.metaData); // [ { name: 'DEPARTMENT_ID' }, { name: 'DEPARTMENT_NAME' } ]
|
|
console.log(result.rows); // [ [ 180, 'Construction' ] ]
|
|
|
|
} catch (err) {
|
|
console.error(err);
|
|
} finally {
|
|
if (connection) {
|
|
try {
|
|
// Note: connections should always be released when not needed
|
|
await connection.close();
|
|
} catch (err) {
|
|
console.error(err);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
run();
|