poolHealthCheck method

bool poolHealthCheck(
  1. int poolId
)

Performs a health check on the connection pool.

The poolId must be a valid pool identifier. Returns true if the pool is healthy, false otherwise.

Implementation

bool poolHealthCheck(int poolId) {
  return _bindings.odbc_pool_health_check(poolId) == 1;
}