Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

甲骨文,基于node的 oracledb 套件,生活更加美好

$
0
0

使用 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);
    });

Viewing all articles
Browse latest Browse all 14821

Trending Articles