We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f73231 commit b031130Copy full SHA for b031130
CHANGELOG.md
@@ -1,6 +1,7 @@
1
# Change Log
2
3
## node-oracledb v1.3.0 (DD Mon YYYY)
4
+- Fixed result.outBinds corruption after PL/SQL execution.
5
6
- Added a `oracledb.oracleClientVersion` property giving the version of the Oracle
7
client library, and a `connection.oracleServerVersion` property giving the Oracle
src/njs/src/njsConnection.cpp
@@ -2433,7 +2433,7 @@ v8::Handle<v8::Value> Connection::GetOutBinds (eBaton* executeBaton)
2433
return NanEscapeScope(GetOutBindObject( executeBaton ));
2434
}
2435
2436
- return NanUndefined();
+ return NanEscapeScope(NanUndefined());
2437
2438
2439
/*****************************************************************************/
0 commit comments