File tree 2 files changed +20
-4
lines changed
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
8
8
node-oracledb `v6.0.2 <https://github.com/oracle/node-oracledb/compare/v6.0.1...v6.0.2 >`__ (TBD)
9
9
------------------------------------------------------------------------------------------------
10
10
11
+ Common Changes
12
+ ++++++++++++++
13
+
14
+ #) Test improvements.
15
+
16
+ #) Documentation improvements.
17
+
11
18
Thin Mode Changes
12
19
+++++++++++++++++
13
20
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
-
17
21
#) Fixed bug connecting to databases with older 11g password verifiers.
18
22
19
23
#) Fixed bug when the length of a chunk inside a chunked read spans packets.
@@ -29,6 +33,19 @@ Thin Mode Changes
29
33
30
34
#) Fixed bug when fetching a large number of database objects.
31
35
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
+
32
49
33
50
node-oracledb `v6.0.1 <https://github.com/oracle/node-oracledb/compare/v6.0.0...v6.0.1 >`__ (07 Jun 2023)
34
51
--------------------------------------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -378,7 +378,6 @@ class ThinDbObjectImpl extends DbObjectImpl {
378
378
case types . DB_TYPE_TIMESTAMP_LTZ :
379
379
case types . DB_TYPE_TIMESTAMP_TZ :
380
380
return buf . readOracleDate ( false ) ;
381
- case types . DB_TYPE_BLOB :
382
381
case types . DB_TYPE_BOOLEAN :
383
382
return buf . readBool ( ) ;
384
383
case types . DB_TYPE_OBJECT :
You can’t perform that action at this time.
0 commit comments