File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,12 @@ node-oracledb `v6.8.0 <https://github.com/oracle/node-oracledb/compare/v6.7.1...
14
14
Common Changes
15
15
++++++++++++++
16
16
17
- #) Added a new :attr: `oracledb.dbObjectTypeHandler ` property in which a user
18
- function can be specified when using DbObjects to modify the properties
19
- before it is returned to the application.
17
+ #) Added new :attr: `oracledb.dbObjectTypeHandler ` property in which a user
18
+ function can be specified when using DbObjects to modify the database
19
+ object attributes before the database object is returned to the
20
+ application.
20
21
21
- #) Added support for BigInt values to be passed to Database Objects . This is
22
+ #) Added support for BigInt values to be passed to database objects . This is
22
23
done by using the new property :attr: `oracledb.dbObjectTypeHandler ` which
23
24
can be used to convert strings passed to the dbObject Type Handler to
24
25
BigInt.
Original file line number Diff line number Diff line change @@ -172,8 +172,8 @@ describe('125. longDMLBind.js', function() {
172
172
const sql_query = "select content from " + tableName + " where id = " + insertID ;
173
173
const result = await connection . execute ( sql_query ) ;
174
174
assert ( result ) ;
175
+ assert . strictEqual ( result . rows [ 0 ] [ 0 ] . length , expected . length ) ;
175
176
assert . strictEqual ( result . rows [ 0 ] [ 0 ] , expected ) ;
176
-
177
177
} ;
178
178
179
179
} ) ;
You can’t perform that action at this time.
0 commit comments