File tree 2 files changed +4
-0
lines changed
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...
11
11
Thin Mode Changes
12
12
+++++++++++++++++
13
13
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
+
14
17
#) Fixed bug connecting to databases with older 11g password verifiers.
15
18
16
19
#) 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 {
146
146
cls = this . _buildDbObjectClass ( objType ) ;
147
147
cls . _connection = this ;
148
148
cls . _objType = objType ;
149
+ objType . _connection = this . _impl ;
149
150
this . _dbObjectClasses . set ( objType , cls ) ;
150
151
}
151
152
return ( cls ) ;
You can’t perform that action at this time.
0 commit comments