Fixed result.outBinds corruption after PL/SQL execution.

This commit is contained in:
Christopher Jones 2015-10-15 16:06:20 +11:00
parent 3f73231bad
commit b031130538
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
# Change Log
## node-oracledb v1.3.0 (DD Mon YYYY)
- Fixed result.outBinds corruption after PL/SQL execution.
- Added a `oracledb.oracleClientVersion` property giving the version of the Oracle
client library, and a `connection.oracleServerVersion` property giving the Oracle

View File

@ -2433,7 +2433,7 @@ v8::Handle<v8::Value> Connection::GetOutBinds (eBaton* executeBaton)
return NanEscapeScope(GetOutBindObject( executeBaton ));
}
}
return NanUndefined();
return NanEscapeScope(NanUndefined());
}
/*****************************************************************************/