public void execute(final String exString) throws DataAccessException {
getHibernateTemplate().execute(new HibernateCallback() {
public Object doInHibernate(Session s) throws HibernateException, SQLException {
s.createQuery(exString).executeUpdate();
return null;
}
});
}