You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`0` | Always checks for connection aliveness. There is some overhead in performing a ping so non-zero values are recommended for most applications
777
-
`n` > 0 | Checks aliveness if the connection has been idle in the pool (not "checked out" to the application by `getConnection()`) for at least `n` seconds
`0`| Always checks for connection aliveness. There is some overhead in performing a ping so non-zero values are recommended for most applications
777
+
`n` > `0` | Checks aliveness if the connection has been idle in the pool (not "checked out" to the application by `getConnection()`) for at least `n` seconds
778
778
779
779
This property may be overridden when [creating a connection pool](#createpool).
780
780
@@ -2996,11 +2996,11 @@ during [pool creation](#createpool).
`0` | Always checks for connection aliveness. There is some overhead in performing a ping so non-zero values are recommended for most applications
3003
-
`n` > 0 | Checks aliveness if the connection has been idle in the pool (not "checked out" to the application by `getConnection()`) for at least `n` seconds
`0`| Always checks for connection aliveness. There is some overhead in performing a ping so non-zero values are recommended for most applications
3003
+
`n` > `0` | Checks aliveness if the connection has been idle in the pool (not "checked out" to the application by `getConnection()`) for at least `n` seconds
0 commit comments