Skip to content

Commit 8314763

Browse files
committed
Tweak example comments
1 parent 79300c2 commit 8314763

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/webapp.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ function init() {
5151
password: dbConfig.password,
5252
connectString: dbConfig.connectString
5353
// Default values shown below
54-
// events: false, // whether to handle Oracle Database FAN and RLB events
54+
// events: false, // whether to handle Oracle Database FAN and RLB events or support CQN
5555
// externalAuth: false, // whether connections should be established using External Authentication
5656
// poolAlias: 'myalias' // set an alias to allow access to the pool via a name
5757
// poolIncrement: 1, // only grow the pool by one connection at a time
5858
// poolMax: 4, // maximum size of the pool. Increase UV_THREADPOOL_SIZE if you increase poolMax
5959
// poolMin: 0, // start with no connections; let the pool shrink completely
60-
// poolPingInterval: 60, // check aliveness of connection if in the pool for 60 seconds
60+
// poolPingInterval: 60, // check aliveness of connection if idle in the pool for 60 seconds
6161
// poolTimeout: 60, // terminate connections that are idle in the pool for 60 seconds
6262
// queueTimeout: 60000, // terminate getConnection() calls in the queue longer than 60000 milliseconds
6363
// stmtCacheSize: 30 // number of statements that are cached in the statement cache of each connection

examples/webapppromises.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ function init() {
5151
password: dbConfig.password,
5252
connectString: dbConfig.connectString
5353
// Default values shown below
54-
// events: false, // whether to handle Oracle Database FAN and RLB events
54+
// events: false, // whether to handle Oracle Database FAN and RLB events or support CQN
5555
// externalAuth: false, // whether connections should be established using External Authentication
5656
// poolAlias: 'myalias' // set an alias to allow access to the pool via a name.
5757
// poolIncrement: 1, // only grow the pool by one connection at a time
5858
// poolMax: 4, // maximum size of the pool. Increase UV_THREADPOOL_SIZE if you increase poolMax
5959
// poolMin: 0, // start with no connections; let the pool shrink completely
60-
// poolPingInterval: 60, // check aliveness of connection if in the pool for 60 seconds
60+
// poolPingInterval: 60, // check aliveness of connection if idle in the pool for 60 seconds
6161
// poolTimeout: 60, // terminate connections that are idle in the pool for 60 seconds
6262
// queueTimeout: 60000, // terminate getConnection() calls in the queue longer than 60000 milliseconds
6363
// stmtCacheSize: 30 // number of statements that are cached in the statement cache of each connection

0 commit comments

Comments
 (0)