process.platform:win32 process.version:v18.16.0 process.arch:x64 require('oracledb').versionString:6.0.2 require('oracledb').oracleClientVersionString: Uncaught: Error: NJS-089: getting the Oracle Client version is not supported by node-oracledb in Thin mode at throwErr (~\node_modules\orac...
ThinPoolImpl._connect (C:\Users\Administrator\Desktop\Teste Padap\node_modules\oracledb\lib\thin\pool.js:207:5) { code: 'NJS500' } Memberanthonytuininga commented Jun 22, 2023 That errorstrongly suggests you have NNE enabled on the server -- which is not supported in thin mode. You...
Node-oracledb 6.0默认为“精简模式”驱动程序。您可以切换到密集模式以获得Oracle Database 11 g支持...
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_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...