protected void myInitPool() throws SQLException {
   try {
     Class.forName(getDriverName());
   } catch (ClassNotFoundException ex) {
     throw new SQLException("Driver Class Not Found", ex.toString());
   }
   pHelper = new PoolHelper(getJdbcURL(), getUserId(), getUserPwd(), maxLimit);
   pHelper.initPoolConnection();
 }