File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ node-oracledb `v6.0.2 <https://github.com/oracle/node-oracledb/compare/v6.0.1...
1111Thin Mode Changes
1212+++++++++++++++++
1313
14+ #) Fixed bug with getting the value of a LOB stored in a DbObject
15+ `Issue #1571 <https://github.com/oracle/node-oracledb/issues/1571 >`__.
16+
1417#) Fixed bug connecting to databases with older 11g password verifiers.
1518
1619#) Fixed bug when the length of a chunk inside a chunked read spans packets.
Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ class Connection extends EventEmitter {
146146 cls = this . _buildDbObjectClass ( objType ) ;
147147 cls . _connection = this ;
148148 cls . _objType = objType ;
149+ objType . _connection = this . _impl ;
149150 this . _dbObjectClasses . set ( objType , cls ) ;
150151 }
151152 return ( cls ) ;
You can’t perform that action at this time.
0 commit comments