我正在尝试从 nodejs 查询 oracledb。下面是我用于查询的代码
exports.simpleExecute = function(query,bindParams, options,callback) {
try {
pool.getConnection(function(err, connection) {
if (err) {
console.log(err);
}
connection.execute(query,bindParams, options,function(err, data) {
console.log(data);
if (err) {
console.log(err);
response.send({})
}
callback(null, data);
})
})
} catch (err) {
callback(err, null);
}
}
以下是发出请求的代码:
database.simpleExecute(query1,{},{outFormat: database.OBJECT},function(err, data1) {
// console.log(data2);
if (err) {
console.log(err);
response.send({});
}
var percentChange = ((data1.rows[0].COUNT - data1.rows[0].COUNT) / data2.rows[0].COUNT) * 100;
var data = [data1.rows[0].COUNT, percentChange];
response.send(data);
});
其中 query1 是:“SELECT count(distinct user_id) count_value FROM chatlog where trunc(timestamp) between to_date('2017-09-09','YYYY-MM-DD') 和 to_date('2017-10-08',' YYYY-MM-DD')"
问题是 data1.rows 参数不是作为对象数组出现,而是作为数组出现。以前我尝试了另一种连接和查询的方法,取自https://jsao.io/2015/03/making-a-wrapper-module-for-the-node-js-driver-for-oracle-database/和事情在这种情况下似乎运行良好。我还在 data1.rows 中获得了参数的名称。当我打印 data1 时得到的输出是:
{ rows: [ [ 1 ] ],
resultSet: undefined,
outBinds: undefined,
rowsAffected: undefined,
metaData: [ { name: 'COUNT' } ] }