npm安装oracle数据库失败

npm OracleDB installation failed?

本文关键字:失败 数据库 oracle 安装 npm      更新时间:2023-09-26

我尝试使用nodejs连接Oracle DB,下面是示例代码片段。

oracledb.getConnection(
  {
    user          : "hr",
    password      : "welcome",
    connectString : "localhost/XE"
  },(function(err){
        if(!err) {
          console.log("Database is connected ... 'n'n");  
        } else {
             console.log(util.inspect(conString,false,null ));      
          console.log("Error connecting database ... 'n'n"+client);  
        }
    }));

我得到下面的错误"错误:找不到模块'oracledb'",累了使用npm install oracledb安装Oracle模块,但未能安装:下面是我得到的错误

gyp ERR! configure error
gyp ERR! stack Error: Can't find Python executable "python", you can set the
HON env variable.
gyp ERR! stack     at failNoPython (C:'Program Files'nodejs'node_modules'npm'
e_modules'node-gyp'lib'configure.js:114:14)
gyp ERR! stack     at C:'Program Files'nodejs'node_modules'npm'node_modules'n
-gyp'lib'configure.js:69:11
gyp ERR! stack     at FSReqWrap.oncomplete (evalmachine.<anonymous>:95:15)
gyp ERR! System Windows_NT 6.1.7601
gyp ERR! command "node" "C:''Program Files''nodejs''node_modules''npm''node_m
les''node-gyp''bin''node-gyp.js" "rebuild"
gyp ERR! cwd C:'UOC_UCAATM'script_new'node_modules'oracledb
gyp ERR! node -v v0.12.7
gyp ERR! node-gyp -v v2.0.1
gyp ERR! not ok

谁能告诉我如何解决这个问题?

npm ERR! Windows_NT 6.1.7601
npm ERR! argv "C:''Program Files''nodejs''''node.exe" "C:''Program Files''nod
''node_modules''npm''bin''npm-cli.js" "install" "oracledb"
npm ERR! node v0.12.7
npm ERR! npm  v2.11.3
npm ERR! code ELIFECYCLE
npm ERR! oracledb@1.0.0 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the oracledb@1.0.0 install script 'node-gyp rebuild'.
npm ERR! This is most likely a problem with the oracledb package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-gyp rebuild
npm ERR! You can get their info via:
npm ERR!     npm owner ls oracledb
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR!     C:'UOC_UCAATM'script_new'npm-debug.log

我遇到了类似的错误,我重新安装了python 2.7来解决它。必须是64位,因为我运行的是64位操作系统和Oracle XE。

https://www.python.org/downloads/

请确保在安装时将其添加到您的路径中。

如有疑问,请阅读手册:https://github.com/oracle/node-oracledb/blob/master/INSTALL.md#instwin正如@x4rf41所说,您缺少一个先决条件。