node-oracle
node-oracle copied to clipboard
node.js driver to connect with an oracle database.
Hi, Quick question about OCCICURSOR out parameters : are they closed automatically by the driver ? Or do we have to close them manually ? If so, what would be...
Connecting to Oracle via JDBC is trivial (JVM + driver). Not your fault, but trying to install node-oracle is consistently unsuccesful for me, as I end up with indecipherable (to...
I have, Oracle 11g 64 bit Node.js v0.10.33 OCI_INC_DIR --> C:\instantclient_12_1\sdk\include OCI_INCLUDE_DIR --> C:\instantclient_12_1\sdk\include OCI_LIB_DIR --> C:\instantclient_12_1\sdk\lib\msvc OCI_VERSION --> 12 Path --> C:\instantclient_12_1\vc10;C:\instantclient_12_1;C:\app\Nuskya\product\11.2.0\client_1;C:\Oracle\pr oduct\11.2.0\dbhome_1\bin;C:\ProgramData\Oracle\Java\javapath;C:\Python27\;C:\Program Files\Intel\iCLS Client\;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMRO OT%\System32\WindowsPowerShell\v1.0\;%JAVA_HOME%\bin;c:\Program Files\Microsoft SQL Server\100\Tools\Binn\;c:\Program...
Hello, I'm trying to run this on a mac, the pre_install_check.sh script tells me everything is fine, but I get an error for 'occi.h' not being found. This file is...
``` make: Entering directory `/u/test-node-oracle/node_modules/oracle/build' CXX(target) Release/obj.target/oracle_bindings/src/connection.o cc1plus: error: unrecognized command line option "-fno-tree-vrp" make: *** [Release/obj.target/oracle_bindings/src/connection.o] Error 1 make: Leaving directory `/u/test-node-oracle/node_modules/oracle/build' gyp ERR! build error gyp ERR! stack...
I have some testcases that I am running - if I run this code to call a stored procedure: ``` oracle.connect(connectData, function(err, connection) { connection.execute("call my stored procedure", ['some', 'inparams',...
date in oracle like this `2014/3/31 16:11:19.000000` but select result is `Tue Apr 01 2014 00:11:19 GMT+0800 (中国标准时间)` How can I do ?
Sometimes i'll get unrecognized chars in clob... (output param type). ;���� or emenCy��gl any idea ?
The problems happens for me with statements like "SELECT \* FROM TABLE xxx WHERE :1, :2, :3". It also happens with the statement "SELECT SYSDATE FROM DUAL", so we can...