针对你遇到的问题“njs-138: connections to this database server version are not supported by node-oracledb in thin mode”,我可以从以下几个方面来帮助你解决: 确认node-oracledb的版本和Oracle数据库服务器的版本: 首先,你需要检查当前使用的node-oracledb版本以及Oracle数据库服务器的版本。这可以通过查看项...
Hello All, the node-oracledb 6.0.0 release is out! This version of node-oracledb is now a ‘Thin’ mode driver by default. The Thin mode is implemented purely in JavaScript and connects directly to Oracle Database. It removes the need to d...
Thin mode support and new examples May 23, 2023 plugins/token Add the new files and prepare for 6.8 Feb 13, 2025 src Add support for Interval datatypes (Issue#929) Feb 11, 2025 test Final changes and example updates for 6.8 release ...
Node-oracledb 6.0默认为“精简模式”驱动程序。您可以切换到密集模式以获得Oracle Database 11 g支持...
VersionString =not supported by node-oracledb in Thin mode Is an error or a hang or a crash? Error Whaterror(s) or behavior you are seeing? An occurred when attempting to test with connector 6.0.0 in Thin Mode. The base is an "Oracle Database 21c Enterprise Edition Release ...
OracleDB.oracleClientVersionString: could not get it because I am running in Thin mode process.platform: win32 process.version: v16.4.0 process.arch: x64 package.json dependencies: "oracledb": "^6.0.2", "@types/oracledb": "^5.3.1", Application Setup I have an Expressjs app written ...
NODE_ORACLEDB_CONNECTIONSTRING=***\ NODE_ORACLEDB_DRIVER_MODE=thick \ bun run example.js Which instantly resulted in the following error: Runninginthick mode 638|_initializeThinDriver(); 639|} 640|641|const conn = newConnection();
The code that you see on Github does not include the code for thin mode, but some extra functionalities that will be used by the upcoming node-oracledb version. The Thin mode will not require the binary fileoracledb.nodewhen it is released. ...
Error DPI-1019 in version 6.0.0#1560 Closed cjbjmentioned this issueMay 30, 2023 Do I need to set the pool size andUV_THREADPOOL_SIZEin Thin mode?#1562 Closed sharadrajuclosed this ascompletedJun 7, 2023 sharadrajumentioned this issueJun 22, 2023 ...
This is my Dockerfile FROM node:carbon USER root WORKDIR /usr/src/app COPY package*.json ./ RUN npm install COPY . . RUN chmod -R 777 /usr/src/app ENV LD_LIBRARY_PATH="/usr/src/app/oracle/instantclient_18_3" I am using oracledb@3.1.2 node module to connect with oracle database...