mormot事务控制
mormot事务控制
mormot对所有的数据库类型事务都是一样处理方法
gProps.SharedTransaction(1, transBegin);
try
gProps.SharedTransaction(1, transCommitWithoutException);
except
on E: Exception do
gProps.SharedTransaction(1, transRollback);
end;
这个1换成一个用户变更,保证事务唯一就可以了
本文来自博客园,作者:{咏南中间件},转载请注明原文链接:https://www.cnblogs.com/hnxxcxg/p/10083379.html