503504505506507508509510511
public DBQuery setParameter(int position, Object val) { try { query.setParameter(position, val); } catch (HibernateException e) { throw new DBRuntimeException("DBQuery error. ", e); } return this; }
524525526527528529530531532
public DBQuery setParameter(String name, Object val) { try { query.setParameter(name, val); } catch (HibernateException e) { throw new DBRuntimeException("DBQuery error. ", e); } return this; }
537538539540541542543544545
public DBQuery setParameterList(String name, Collection vals, Type type) { try { query.setParameterList(name, vals, type); } catch (HibernateException e) { throw new DBRuntimeException("DBQuery error. ", e); } return this; }
550551552553554555556557558
public DBQuery setParameterList(String name, Collection vals) { try { query.setParameterList(name, vals); } catch (HibernateException e) { throw new DBRuntimeException("DBQuery error. ", e); } return this; }
563564565566567568569570571
public DBQuery setParameterList(String name, Object[] vals, Type type) { try { query.setParameterList(name, vals, type); } catch (HibernateException e) { throw new DBRuntimeException("DBQuery error. ", e); } return this; }
576577578579580581582583584
public DBQuery setParameterList(String name, Object[] vals) { try { query.setParameterList(name, vals); } catch (HibernateException e) { throw new DBRuntimeException("DBQuery error. ", e); } return this; }
589590591592593594595596597
public DBQuery setProperties(Object bean) { try { query.setProperties(bean); } catch (HibernateException e) { throw new DBRuntimeException("DBQuery error. ", e); } return this; }
690691692693694695696697
public Object uniqueResult() { try { return query.uniqueResult(); } catch (HibernateException e) { throw new DBRuntimeException("DBQuery error. ", e); } }