poolClose method
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;
}