node-oracledb/examples/insert1.js

86 lines
2.4 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
* insert1.js
*
* DESCRIPTION
* Creates a table and inserts data. Shows DDL and DML
*
* To insert many records at a time see em_insert1.js
*
* This example uses Node 8's async/await syntax.
*
*****************************************************************************/
const oracledb = require('oracledb');
const dbConfig = require('./dbconfig.js');
async function run() {
let connection;
try {
connection = await oracledb.getConnection(dbConfig);
await connection.execute(
`BEGIN
EXECUTE IMMEDIATE 'DROP TABLE test';
EXCEPTION WHEN OTHERS THEN
IF SQLCODE <> -942 THEN
RAISE;
END IF;
END;`);
console.log("Table dropped");
await connection.execute(
`CREATE TABLE test (id NUMBER, name VARCHAR2(20))`);
console.log("Table created");
// 'bind by name' syntax
let result = await connection.execute(
`INSERT INTO test VALUES (:id, :nm)`,
{ id : {val: 1 }, nm : {val: 'Chris'} });
console.log("Rows inserted: " + result.rowsAffected); // 1
// 'bind by position' syntax
result = await connection.execute(
`INSERT INTO test VALUES (:id, :nm)`,
[2, 'Alison']);
console.log("Rows inserted: " + result.rowsAffected); // 1
result = await connection.execute(
`UPDATE test SET name = :nm`,
['Bambi'],
{ autoCommit: true }); // commit once for all DML in the script
console.log("Rows updated: " + result.rowsAffected); // 2
} catch (err) {
console.error(err);
} finally {
if (connection) {
try {
await connection.close();
} catch (err) {
console.error(err);
}
}
}
}
run();