private void init2() {
    try {
      for (int count = 0; stmt == null && count++ <= 5; count++) {
        wait(100L);
        dbConn = DBCHPool.getConnection();
        stmt = dbConn.createStatement(1004, 1007);
      }

      if (isProcedure) cstmt = dbConn.prepareCall(querySQL, 1004, 1007);
    } catch (Exception exception) {
    }
  }