使用 Oracle 数据库实现高性能的 Node.js 应用
var oracledb = require('oracledb');
oracledb.getConnection(
{
user : "KdTest01",
password : "password",
connectString : "192.168.0.120:1521/ORCL"
})
.then(function(conn) {
return conn.execute(
"select * from NLS_DATABASE_PARAMETERS where PARAMETER = 'NLS_CHARACTERSET' OR PARAMETER = 'NLS_NCHAR_CHARACTERSET'"
)
.then(function(result) {
console.log(result.rows);
return conn.close();
})
.catch(function(err) {
console.error(err);
return conn.close();
});
})
.catch(function(err) {
console.error(err);
});