poolClose method

bool poolClose(
  1. int poolId
)

Closes the connection pool and releases all connections.

The poolId must be a valid pool identifier. Returns true on success, false on failure.

Implementation

bool poolClose(int poolId) {
  return _bindings.odbc_pool_close(poolId) == 0;
}