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

I am getting this error when I try to Install Oracle Any help on this appreciated gyp ERR! configure error gyp ERR! stack Error: spawn EACCES gyp ERR! stack at...

Install Issue

There seems to be a lot of similar issues to this when I search, but most revolve around not having Python or OCI environment variables set. I've been at this...

Install Issue

I have successfully compiled the module for: - Node.js 0.10.21 (ia32) - Oracle instance Client version 12 - Python 2.7.3 - Visual Studio 2013 Server: Oracle Database 11g Enterprise Edition...

Hello, I have a stored procedure which has an out parameter of type BLOB. The content of that blob is a large string compressed using the java DeflaterOutputStream class. I...

hi, i tried this query : ``` javascript connection.execute("select OBJECTID from IMMEUBLES where VOIE in (:1)", [" '1 RUE ARNOLD SCHOENBERG', '3 ROND-POINT DES SAULES' "], function(err, results) { console.log(results);...

This pull request adds an `options` argument to connection.execute as optional 3rd argument. This allows specification of `{getColumnMetaData:true}` as the options argument. I added regression tests. Existing tests pass. I...

When working with oracle with JDBC I can get the meta data (datatype, size, etc.) about the columns for each return cursor. Can this feature be added to this module's...

Hello, I failed to find any work done on a node 0.11.14 port so I modified the source to compile on node 0.11.14 by using nan v1.3.0. I built and...

Trying to connect to oracle db ``` var oracle = require('oracle'); var connectData = { "hostname": "UX572.fairisaac.com", "user": "PHMSCHEMA_UI", "password": "autumn", "database": "ifmq1.world"}; oracle.connect(connectData, function(err, connection) { // selecting rows...

Hi, Just noticed that when a SELECT query is executed with minus and union only the first part is considered (before minus or union). Cheers