Hi, for the DefaultConnectionPool.java of the sql lib the method setPoolEnabled misses the setting of the member variable
public void setPoolEnabled( final boolean flag )
{
}
I think adding the following is the intended solution
m_IsActive = flag;
Klemens
