码迷,mamicode.com
首页 > 其他好文 > 详细

select..for update

时间:2016-03-30 12:28:25      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

select..for update; 给数据库表手动上锁

   这条语句会开启一个session,直到这个session Commit,其他session才能执行更新、插入、删除操作,对查询没有影响,但是这张表再不能开启其他select..for update;

   使用情况:使用count(*)作为流水号字段的值时,在高并发情况下容易出现重复,此时用select..for update;执行插入前锁住这张表来保证流水号不重复,使用时把select..for update;与执行insert、update、delete 的语句放在service(业务层)下一个方法中,如果放在service下的两个以上方法中,controller类调用一个方法结束后会自动执行下commit,达不到锁住表的效果。

this.DaoBase.ExecuteCommand("select * from enrollment_student_info for update");//先开启select..for update把表锁上,后面过来的事物只能先等这个事物执行完了再执行
object res = this.DaoBase.ExecuteScalar("select count(*) from enrollment_student_info");
this.DaoBase.ExecuteNonquery("Insert...");

 

select..for update

标签:

原文地址:http://www.cnblogs.com/xbblogs/p/5336578.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!