批量删除 博客分类: hibernate 批量删除
程序员文章站
2024-03-16 09:48:58
...
/** * <p> * 批量删除用户 * </p> * * @param hql,如: delete Employee e where e.uid in (1,2,3) * @return 删除的数量 */ public int delEmps(String hql) { Session ses = null; Transaction tran = null; int count = 0; try { ses = SessionFactory.getSession(); tran = ses.beginTransaction(); Query query = ses.createQuery(hql); count = query.executeUpdate(); tran.commit(); } catch (SessionFactoryException e) { e.printStackTrace(); try { SessionFactory.rollBackTransaction(tran); } catch (SessionFactoryException e1) { e1.printStackTrace(); } } finally { try { SessionFactory.closeSession(ses); } catch (SessionFactoryException e) { e.printStackTrace(); } } return count; }
上一篇: 第一个javascript prototype 博客分类: javascript prototypeJavaScriptjQueryOORuby
下一篇: MySQL Plugin 'InnoDB' init function returned error. 博客分类: 数据库 MySQLSocketPHP
推荐阅读
-
批量删除 博客分类: hibernate 批量删除
-
批量删除 博客分类: hibernate 批量删除
-
删除操作之后重定向 博客分类: struts
-
mongodb 导入大批量数据出错的解决办法 博客分类: mongodb mongodb
-
oracle 删除和重建表空间脚本 博客分类: 数据库 oraclesql
-
rsync备份和删除指定文件 博客分类: linuxjava数据库
-
mysql 删除重复记录 保留一条 博客分类: 数据库 mysqlsql
-
JedisCluster模式尝试进行批量操作 博客分类: redis rediscluster
-
jquery.cookie() 方法的使用(读取、写入、删除) 博客分类: script网站 cookie
-
PowerPoint2013批量修改文字的字体等属性 博客分类: OFFICE PowerPointOffice批量字体