@@ -778,7 +778,7 @@ it is possible for un-usable connections to be returned by a pool
778778to occur after ` getConnection() ` is called, applications should
779779implement appropriate statement execution error checking.
780780
781- The default value is ` 60 ` seconds. Possible values for ` poolPingInterval ` are:
781+ The default value is 60 seconds. Possible values for ` poolPingInterval ` are:
782782
783783` poolPingInterval ` Value | Behavior of a Pool ` getConnection() ` Call
784784----------|------------------------------------------
@@ -1062,6 +1062,8 @@ Boolean externalAuth
10621062Indicate whether connections should be established using
10631063[ External Authentication] ( #extauth ) .
10641064
1065+ The default is * false* .
1066+
10651067This optional property overrides the
10661068[ ` oracledb.externalAuth ` ] ( #propdbisexternalauth ) property.
10671069
@@ -1100,6 +1102,8 @@ Number poolIncrement
11001102The number of connections that are opened whenever a connection
11011103request exceeds the number of currently open connections.
11021104
1105+ The default value is 1.
1106+
11031107This optional property overrides the
11041108[ ` oracledb.poolIncrement ` ] ( #propdbpoolincrement ) property.
11051109
@@ -1109,6 +1113,8 @@ Number poolMax
11091113
11101114The maximum number of connections to which a connection pool can grow.
11111115
1116+ The default value is 4.
1117+
11121118This optional property overrides the
11131119[ ` oracledb.poolMax ` ] ( #propdbpoolmax ) property.
11141120
@@ -1119,6 +1125,8 @@ Number poolMin
11191125The minimum number of connections a connection pool maintains, even
11201126when there is no activity to the target database.
11211127
1128+ The default value is 0.
1129+
11221130This optional property overrides the
11231131[ ` oracledb.poolMin ` ] ( #propdbpoolmin ) property.
11241132
@@ -1135,17 +1143,22 @@ Note this attribute is ignored when node-oracledb is built with Oracle
11351143client 12.2, since this has its own lightweight, always-enabled
11361144connection check.
11371145
1146+ The default value is 60.
1147+
11381148This optional property overrides the
11391149[ ` oracledb.poolPingInterval ` ] ( #propdbpoolpinginterval ) property.
11401150
1151+ See [ Connection Pool Pinging] ( #connpoolpinging ) for more discussion.
1152+
11411153```
11421154Number poolTimeout
11431155```
11441156
11451157The number of seconds after which idle connections (unused in the
11461158pool) may be terminated. Idle connections are terminated only when
1147- the pool is accessed. If ` poolTimeout ` is set to 0, then idle
1148- connections are never terminated.
1159+ the pool is accessed.
1160+
1161+ The default value is 60.
11491162
11501163This optional property overrides the
11511164[ ` oracledb.poolTimeout ` ] ( #propdbpooltimeout ) property.
@@ -1154,10 +1167,12 @@ This optional property overrides the
11541167Boolean queueRequests
11551168```
11561169
1157- Indicate whether [ ` pool.getConnection() ` ] ( #getconnectionpool )
1170+ Indicates whether [ ` pool.getConnection() ` ] ( #getconnectionpool )
11581171(or [ ` oracledb.getConnection() ` ] ( #getconnectiondb ) calls that use a pool)
11591172should be queued when all available connections in the pool are currently in use.
11601173
1174+ The default value is * true* .
1175+
11611176This optional property overrides the
11621177[ ` oracledb.queueRequests ` ] ( #propdbqueuerequests ) property.
11631178
@@ -1169,6 +1184,8 @@ The number of milliseconds after which connection requests waiting in the
11691184connection request queue are terminated. If ` queueTimeout ` is
11701185set to 0, then queued connection requests are never terminated.
11711186
1187+ The default value is 60000.
1188+
11721189This optional property overrides the
11731190[ ` oracledb.queueTimeout ` ] ( #propdbqueuetimeout ) property.
11741191
0 commit comments