File tree Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -8,12 +8,16 @@ node-oracledb Release Notes
88node-oracledb `v6.0.2 <https://github.com/oracle/node-oracledb/compare/v6.0.1...v6.0.2 >`__ (TBD)
99------------------------------------------------------------------------------------------------
1010
11+ Common Changes
12+ ++++++++++++++
13+
14+ #) Test improvements.
15+
16+ #) Documentation improvements.
17+
1118Thin Mode Changes
1219+++++++++++++++++
1320
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-
1721#) Fixed bug connecting to databases with older 11g password verifiers.
1822
1923#) Fixed bug when the length of a chunk inside a chunked read spans packets.
@@ -29,6 +33,19 @@ Thin Mode Changes
2933
3034#) Fixed bug when fetching a large number of database objects.
3135
36+ #) Display a better error when using BLOBs in DbObjects in Thin mode.
37+
38+ #) Improved pool performance by optimizing deobfuscation logic for pool
39+ credentials.
40+
41+ #) Minor internal code cleanup.
42+
43+ Thick Mode Changes
44+ ++++++++++++++++++
45+
46+ #) Fixed bug with getting the value of a LOB stored in a DbObject
47+ `Issue #1571 <https://github.com/oracle/node-oracledb/issues/1571 >`__.
48+
3249
3350node-oracledb `v6.0.1 <https://github.com/oracle/node-oracledb/compare/v6.0.0...v6.0.1 >`__ (07 Jun 2023)
3451--------------------------------------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -378,7 +378,6 @@ class ThinDbObjectImpl extends DbObjectImpl {
378378 case types . DB_TYPE_TIMESTAMP_LTZ :
379379 case types . DB_TYPE_TIMESTAMP_TZ :
380380 return buf . readOracleDate ( false ) ;
381- case types . DB_TYPE_BLOB :
382381 case types . DB_TYPE_BOOLEAN :
383382 return buf . readBool ( ) ;
384383 case types . DB_TYPE_OBJECT :
You can’t perform that action at this time.
0 commit comments