You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Klemens Hemm <kl...@empolis.com> on 2002/03/12 13:41:31 UTC

sql lib bug: can't set pooling active for default pool

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