术语:DTC(分布式事务协调器) .Net中实现事务的几种方法总结:一. 通过后台数据库的SQL语句实现事务,在台数据库端通过语句来实现转帐业务,如下: Set xact_abort on Begin tran Update A_user set balance = balance -10000 where uid=’211705’ Update B_user set balance = balance + 10000 where uid=’462509’ Commit tran 其中Set x