ibatis 设置行级锁 操作

阅读更多
在使用ibatis进行编程的时候 需要锁行的时候 我经常用存储过程

这里 说下 在代码中如何实现

//当做一个事物来处理
daomanager.startTransaction();
//   select * from lottery_users t where  t.user_name = '1111' for update	
Map m  = basicUserInfoDao.test();
//update  lottery_users t set t.mobile_user_name = '12346' where t.user_name = ‘1111'
		basicUserInfoDao.update(;
		daomanager.commitTransaction();
		daomanager.endTransaction();




你可能感兴趣的:(ibatis 设置行级锁 操作)