首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

hibernate 施行sql 语句 批量删除和更新

2012-07-03 
hibernate 执行sql 语句 批量删除和更新?更新方法public void executeUpdateSql(final String sql)throws

hibernate 执行sql 语句 批量删除和更新

?

更新方法public void executeUpdateSql(final String sql)throws DataAccessException{this.getSession().createSQLQuery(sql).executeUpdate();this.getSession().flush(); //清理缓存,执行批量插入  this.getSession().clear(); //清空缓存中的 对象}

?

?

?

删除方法    public void deleteBySql(String delsql) throws HibernateException, SQLException{    this.getSession().createSQLQuery(delsql).executeUpdate();    this.getSession().flush(); //清理缓存,执行批量插入this.getSession().clear(); //清空缓存中的 对象    }
?

热点排行