File tree Expand file tree Collapse file tree 3 files changed +405
-5
lines changed Expand file tree Collapse file tree 3 files changed +405
-5
lines changed Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ describe('1. connection.js', function(){
237
237
connection . should . be . ok ;
238
238
connection . execute (
239
239
"SELECT * FROM oracledb_employees" ,
240
- { } , { maxRows : 25 } ,
240
+ { } , { maxRows : 25 } ,
241
241
function ( err , result ) {
242
242
should . not . exist ( err ) ;
243
243
should . exist ( result ) ;
@@ -252,11 +252,11 @@ describe('1. connection.js', function(){
252
252
connection . should . be . ok ;
253
253
connection . execute (
254
254
"SELECT * FROM oracledb_employees" ,
255
- { } , { maxRows : 0 } ,
255
+ { } , { maxRows : 0 } ,
256
256
function ( err , result ) {
257
257
should . not . exist ( err ) ;
258
258
should . exist ( result ) ;
259
- // Return 25 records according to execution setting
259
+
260
260
( result . rows ) . should . have . length ( 0 ) ;
261
261
done ( ) ;
262
262
}
Original file line number Diff line number Diff line change 410
410
55.12 bind a cursor BIND_INOUT
411
411
- 55.12.1 should work
412
412
413
-
414
413
56. fetchAs.js
415
414
56.1 FetchAs - DATE type as STRING
416
415
56.2 FetchAs NUMBER & DATE type as STRING
419
418
420
419
57. nestedCursor.js
421
420
57.1 testing nested cursor support - result set
422
- 57.2 testing nested cursor support - REF Cursor
421
+ 57.2 testing nested cursor support - REF Cursor
422
+
423
+ 58. properties.js
424
+ 58.1 oracledb properties
425
+ 58.1.1 poolMin
426
+ 58.1.2 poolMax
427
+ 58.1.3 poolIncrement
428
+ 58.1.4 poolTimeout
429
+ 58.1.5 maxRows
430
+ 58.1.6 prefetchRows
431
+ 58.1.7 autoCommit
432
+ 58.1.8 version
433
+ 58.1.9 connClass
434
+ 58.1.10 externalAuth
435
+ 58.1.11 fetchAsString
436
+ 58.1.12 outFormat
437
+ 58.1.13 lobPrefetchSize
438
+ 58.2 pool properties
439
+ 58.2.1 poolMin
440
+ 58.2.2 poolMax
441
+ 58.2.3 poolIncrement
442
+ 58.2.4 poolTimeout
443
+ 58.2.5 stmtCacheSize
444
+ 58.3 connection properties
445
+ 58.3.1 stmtCacheSize
446
+ 58.3.2 clientId
447
+ 58.3.3 action
448
+ 58.3.4 module
You can’t perform that action at this time.
0 commit comments