.net – 在多个数据库上实现事务

前端之家收集整理的这篇文章主要介绍了.net – 在多个数据库上实现事务前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在多个数据库上执行数据更改,我想实现一个涵盖所有更改的事务.

这就是我目前拥有的:

try
{
    db[1].begintransaction();
    db[1].ExecuteNonQuery();

    db[2].begintransaction();
    db[2].ExecuteNonQuery();

    ...

    db[N].begintransaction();
    db[N].ExecuteNonQuery();

    // will execute only if no exception raised during the process
    for (int a = 0; a < N; a++)
    {
        db[a].Commit();// what if there is an error/exception here
    }
}
catch
{
    for (int a = 0; a < N; a++)
    {
        db[a].RollBack();
    }
}

问题是如果在Commit()期间发生异常,上述情况将会非常失败(请参阅注释).有没有更好的方法来实现这一目标?

解决方法

像这样使用 TransactionScope类:
using (TransactionScope ts = new TransactionScope())
{
    //all db code here

    // if an error occurs jump out of the using block and it will dispose and rollback

    ts.Complete();
}

如有必要,TransactionScope类将自动转换为分布式事务.

原文链接:https://www.f2er.com/mssql/76400.html

猜你在找的MsSQL相关文章