本文主要是介绍Dorado7 McfBaseDAO excuteUpdate支持Map及不传参数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Dorado7 McfBaseDAO excuteUpdate支持Map及不传参数
query.setProperties(params);
/**** 执行HQL语句* * @param hql* @param params*/public void excuteUpdate(final String hql, Object[] params) {Session sess = this.getSession();Query query = sess.createQuery(hql);if (params != null) {int i = 0;for (Object o : params) {query.setParameter(i, o);i++;}}query.executeUpdate();}/**** like12 add,20210423,支持不传参数* * @param hql* @param params*/public void excuteUpdate(final String hql) {this.getSession().createQuery(hql).executeUpdate();}/**** like12 add,20210423,支持Map* * @param hql* @param params*/public void excuteUpdate(final String hql, Map<String, ?> params) {Session sess = this.getSession();Query query = sess.createQuery(hql);if (params != null) {query.setProperties(params);}query.executeUpdate();}
这篇关于Dorado7 McfBaseDAO excuteUpdate支持Map及不传参数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!