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
I am getting a SegFault when I try to do a SELECT to alternate schema. No SegFault when schema is not specified or changed. Assume code excerpts occurs after valid connection and authentication have taken place.
First scenario:
db.query().execute("SELECT * FROM greensboro.address_lt",function(error,rows,cols){ ... }
Yields:
Segmentation fault (core dumped)
Second scenario:
db.query().execute('ALTER SESSION SET CURRENT_SCHEMA = greensboro',function(error,rows,cols){db.query().execute("SELECT * FROM address_lt",function(error,rows,cols){ ... }}
Yields:
Segmentation fault (core dumped)
Details:
Oracle 11g
Ubuntu 32bit Server 12.04
Node 0.6.16
db-oracle 0.2.3
The text was updated successfully, but these errors were encountered:
I am getting a SegFault when I try to do a SELECT to alternate schema. No SegFault when schema is not specified or changed. Assume code excerpts occurs after valid connection and authentication have taken place.
First scenario:
Yields:
Second scenario:
Yields:
Details:
The text was updated successfully, but these errors were encountered: