poolSetSize method
Resizes the pool by recreating it with newMaxSize.
All connections must be released before resize. Returns true on success, false on failure (invalid pool, connections checked out, or pool creation failed).
Implementation
bool poolSetSize(int poolId, int newMaxSize) {
return _bindings.odbc_pool_set_size(poolId, newMaxSize) == 0;
}