You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The module is called node-oracledb, but the examples use require('oracledb').
To make this work under windows I had to rename the directory to oracledb.
With regards to how I would like to use the module is: maximum SQL, minimum Javascript or objects.
I would like to see select * from ... and calls of stored procedures work smoothly.
Like I use sqlplus but additional:
control long running queries
paging without explicit modification of queries
LOBS/CLOBS etc is not what I use Oracle for. Stored procedures, Views and plain SQL suffices.
So more a script runner of SQL that can also be executed in SQLPLUS but with control over timeouts and paging would be my target.
A level of API with events instead of callbacks would be nice:
'data', 'error', 'timeout', ...
The text was updated successfully, but these errors were encountered:
If you install exactly as the INSTALL.md example with 'npm install -g' you need require('oracledb'). The intention is for this to also be true after installation from npmjs.com - once we are on the npmj.com registry, see issue #1
The module is called node-oracledb, but the examples use require('oracledb').
To make this work under windows I had to rename the directory to oracledb.
With regards to how I would like to use the module is: maximum SQL, minimum Javascript or objects.
I would like to see select * from ... and calls of stored procedures work smoothly.
Like I use sqlplus but additional:
LOBS/CLOBS etc is not what I use Oracle for. Stored procedures, Views and plain SQL suffices.
So more a script runner of SQL that can also be executed in SQLPLUS but with control over timeouts and paging would be my target.
A level of API with events instead of callbacks would be nice:
'data', 'error', 'timeout', ...
The text was updated successfully, but these errors were encountered: