s = db2con.createStatement();
s.executeUpdate("INSERT INTO XA_TEST (ID, DATA) VALUES (1, "+data+")");
s.close();
if(result != data)
throw new CantSeeDataException("Insert performed on one connection wasn't visible\n"+
"to another connection in the same transaction!");
} catch(SQLException e) {
throw new EJBException("Unable to clear data (have tables been created?): "+e);
} catch(NamingException e) {