node-oracledb/examples/lobselect.js

121 lines
3.4 KiB
JavaScript

/* Copyright (c) 2016, 2018 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
* lobselect.js
*
* DESCRIPTION
* SELECTs a CLOB and displays output to the console.
* SELECTs a BLOB and writes it to a file.
*
* 'Large' LOBs should be streamed as shown in lobstream1.js
*
* Use demo.sql to create the required table or do:
* DROP TABLE mylobs;
* CREATE TABLE mylobs (id NUMBER, c CLOB, b BLOB);
*
* Run lobinsert1.js to load data before running this example.
*
*****************************************************************************/
var fs = require('fs');
var async = require('async');
var oracledb = require('oracledb');
var dbConfig = require('./dbconfig.js');
// force all CLOBs to be returned as Strings
oracledb.fetchAsString = [ oracledb.CLOB ];
// force all BLOBs to be returned as Buffers
oracledb.fetchAsBuffer = [ oracledb.BLOB ];
var doconnect = function(cb) {
oracledb.getConnection(
{
user : dbConfig.user,
password : dbConfig.password,
connectString : dbConfig.connectString
},
function(err, conn) {
if (err)
return cb(err);
else {
return cb(null, conn);
}
});
};
var dorelease = function(conn) {
conn.close(function (err) {
if (err)
console.error(err.message);
});
};
var doclobquery = function(conn, cb) {
conn.execute(
"SELECT c FROM mylobs WHERE id = :idbv",
[1],
// An alternative to oracledb.fetchAsString is to use fetchInfo on the column:
// { fetchInfo: {"C": {type: oracledb.STRING}} },
function(err, result) {
if (err) {
return cb(err, conn);
}
if (result.rows.length === 0) {
return cb(new Error("No results. Did you run lobinsert1.js?"), conn);
}
var clob = result.rows[0][0];
console.log('The CLOB was: ');
console.log(clob);
return cb(null, conn);
});
};
var doblobquery = function(conn, cb) {
conn.execute(
"SELECT b FROM mylobs WHERE id = :idbv",
[2],
// An alternative to oracledb.fetchAsBuffer is to use fetchInfo on the column:
// { fetchInfo: {"B": {type: oracledb.BUFFER}} },
function(err, result) {
if (err) {
return cb(err, conn);
}
if (result.rows.length === 0) {
return cb(new Error("No results. Did you run lobinsert1.js?"), conn);
}
var blob = result.rows[0][0];
console.log('Writing BLOB to lobselectout.jpg');
fs.writeFile('lobselectout.jpg', blob, "binary", function(err) {
return cb(err, conn);
});
});
};
// Connect and call the CLOB example
async.waterfall([
doconnect,
doclobquery,
doblobquery
],
function (err, conn) {
if (err) { console.error("In waterfall error cb: ==>", err, "<=="); }
if (conn)
dorelease(conn);
});