node-oracle icon indicating copy to clipboard operation
node-oracle copied to clipboard

node.js driver to connect with an oracle database.

Results 100 node-oracle issues
Sort by recently updated
recently updated
newest added
trafficstars

Validate if this issue would be corrected with this modification. I've been getting the fowling error: CreateColumnsFromResultSet: Unhandled oracle data type 8

A large portion of the issues opened are caused by incorrect environment conditions for the build. @vrvolle has created a pre-install shell script, and suggested the creation of something similar...

Now that we can connect to Oracle we are experiencing a new suite of problems. The stored procs we must call have data types that JS/Node.js can't handle directly. We...

Will be great to support cursor expression in query like this ``` sql SELECT department_name, CURSOR(SELECT salary, commission_pct FROM employees e WHERE e.department_id = d.department_id) FROM departments d; ``` say,...

I use on win7 development platform node-oracle, but nothing output and not error (is build ok,and I sure my oracle has data) However, I use the same code on linux,...

I am trying to connect with TNS name, and it is not working. I even tried with connection string also, but it is still not working. # I even tried...

Commit a19b9e02 added basic support for Timestamp with timezone and Timestamp with local timezone, but still does not properly calculate the UTC time based on the timezone information. I've made...

Please I hope that I didn't bother you by this issue I succeed to install oracle module with npm ! But I can't run my server and I got this...

Hi, It seems that in the "integration.js" test, the "procDateTimeOutParam" definition is missing... Test is failing on "Error: ORA-06576: not a valid function or procedure name" Thx, Yuval.

Whenever I do `connection.commit(function (error) { ... });` it crashes the process with signal SIGSEGV. I've made a workaround for this issue by doing this ``` js connection.commit = function...