node-oracledb是甲骨文公司官方发布的Oracle的Node.js驱动。目前最新版本0.2还是个预览版本,开发团队还在不断完善,包括对Windows平台的支持、LOB支持、批获取/大查询结果集的流处理以及DRCP支持等。
支持Oracle的基本和高级特性:
SQL和PL/SQL执行
使用javascript对象和数组进行绑定
查询结果返回到JavaScript对象和数组
可在JavaScript和Oracle对象间转换
事务管理
连接池
语句缓存
客户端结果缓存
端到端调试
高可用性
FastApplicationNotification(FAN)
RuntimeLoadBalancing(RLB)
TransparentApplicationFailover(TAF)
示例代码:
var oracledb = require('oracledb');oracledb.getConnection( { user : "hr", password : "welcome", connectString : "localhost/XE" }, function(err, connection) { if (err) { console.error(err.message); return; } connection.execute( "SELECT department_id, department_name " + "FROM departments " + "WHERE department_id = :did", [180], function(err, result) { if (err) { console.error(err.message); return; } console.log(result.rows); }); });
评论