Oracle 搭建Node.js开发环境

Posted 抱影无眠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle 搭建Node.js开发环境相关的知识,希望对你有一定的参考价值。

?

先决条件

安装oralce客户端驱动。

安装node.js。

?

创建项目

安装oracledb模块

$npm install oracledb

如果失败了,你可能要爬墙。

?

参考package.json

{

"name": "oracle-demo",

"version": "1.0.0",

"description": "",

"main": "app.js",

"scripts": {

"test": "echo \"Error: no test specified\" && exit 1"

},

"author": "",

"license": "ISC",

?

"dependencies": {

"oracledb": "2.1.2"

}

}

?

参考源码

var oracledb = require(‘oracledb‘);

?

oracledb.getConnection({

user: "bob",

password: "bob",

connectString: "127.0.0.1/bob"

},

function(err, connection) {

if (err) {

console.error(err.message);

return;

}

?

console.log(‘Connection was successful!‘);

connection.execute(

`select * from person`,

function(err, result) {

if (err) {

console.error(err.message);

doRelease(connection);

return;

}

console.log(result.rows);

doRelease(connection);

});

}

);

?

function doRelease(connection) {

connection.close(

function(err) {

if (err)

console.error(err.message);

});

}

?

?

参考资源

https://github.com/oracle/node-oracledb

https://npm.taobao.org/package/oracledb

?

以上是关于Oracle 搭建Node.js开发环境的主要内容,如果未能解决你的问题,请参考以下文章

快速搭建 Node.js 开发环境以及加速 npm

node,js开发环境的搭建

搭建 Node.js 开发环境

vue.js:搭建开发环境及构建项目

MongoDB 搭建Node.js开发环境

搭建Node.js Redis开发环境