NodeJs鏈接Oracle數據庫

nodejs鏈接oracle數據庫,各個平臺的官方詳情文檔:https://github.com/oracle/node-oracledb/blob/master/INSTALL.mdhtml

個人nodejs鏈接Oracle的配置,運行環境:node

windows7 x64git

nodejs 0.12.7github

Python 2.7.10數據庫

npm 2.11.3npm

運行原理分析

npm調用下載,下載成功以後交由oracle客戶端解析驅動包,解析成功以後,執行完成,目錄node_modules生成oracledb模塊;windows

程序運行時調用oracle sdk執行代碼編譯,程序運行邏輯處理,輸出頁面結果。服務器

實現步驟簡介

一、下載解壓須要安裝包(2個)oracle

二、添加環境變量app

三、npm執行安裝命令

四、查詢demo代碼

五、常見錯誤解決方案

 

安裝詳情

一、下載解壓須要安裝包(2個)

下載頁面:http://www.oracle.com/technetwork/topics/winx64soft-089540.html

下載名稱:

instantclient-basiclite-windows.x64-12.1.0.2.0.zip

instantclient-sdk-windows.x64-12.1.0.2.0.zip

把兩個文件解壓到「C:\oracle\instantclient_12_1」文件目錄不一樣,不會相互覆蓋。 

二、添加環境變量

OCI_INC_DIR=C:\oracle\instantclient_12_1\sdk\include

OCI_LIB_DIR=C:\oracle\instantclient_12_1\sdk\lib\msvc

 

注意!若是本機安裝oracle服務器端,請把次環境變量以下地址:

OCI_INC_DIR = C:\app\Administrator\product\11.2.0\dbhome_1\oci\include

OCI_LIB_DIR = C:\app\Administrator\product\11.2.0\dbhome_1\OCI\lib\MSVC

三、npm執行安裝命令

npm install oracledb

四、查詢demo代碼

router.get('/', function (req, res, next) {

    var oracledb = require('oracledb');
    oracledb.getConnection(
        {
            user: 'username',
            password: 'password',
            connectString: '192.168.20.10:1521/ORCL'
        },
        function (err, connection) {
            if (err) {
                console.error(err.message);
                return;
            }
            connection.execute(
                "SELECT * from CMS_FIlE where content_id=:id",
                [1072],  // bind value for :id
                function (err, result) {
                    if (err) {
                        console.error(err.message);
                        return;
                    }
                    res.render('index', {title: '查詢信息:' + JSON.stringify(result.rows)});
                });
        });

});

執行後,展示效果,如圖:

五、常見錯誤解決方案

錯誤信息,以下:

The specified procedure could not be found. 

c:\xxx\oracledb.node

解放方案:服務器安裝版本與環境變量的OCI_INC_DIR、OCI_LIB_DIR版本不符,設置版本爲一致的便可,參照上面步驟2,配置完成以後,刪除以前下載的oracledb模塊,從新下載oracledb模塊(npm install oracledb)便可。

相關文章
相關標籤/搜索