防止事务并发(事务类型;事务隔离级别)

发布于 2024-08-27 13:29:19 字数 249 浏览 7 评论 0原文

中间层组件将执行应用程序中的数据访问例程。该组件将调用多个 SQL Server 存储过程来执行数据库更新。所有这些过程调用都在单个事务的控制下运行。 中间层的代码将实现以下对象:

SqlCommand comm = connection.CreateCommand();
SqlTransaction trans;

我必须如何向组件添加代码以指定针对此类错误的最高可能级别的保护(两个用户尝试同时更新相同的数据)。

Middle-tier component will execute the data access routines in application. The component will call several SQL Server stored procedures to perform database updates. All of these procedure calls run under the control of a single transaction.
The code for the middle-tier will implement the following objects:

SqlCommand comm = connection.CreateCommand();
SqlTransaction trans;

How i must add code to component to specify the highest possible level of protection against such errors(two users try to update the same data concurrently).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

负佳期 2024-09-03 13:29:19

您使用IsolationLevel

using (SqlConnection con = new SqlConnection(connectionString))
{
    using (SqlTransaction tran = con.BeginTransaction(IsolationLevel.Serializable))
    {
        SqlCommand cmd = con.CreateCommand();

        // etc...

        con.Open();


    }
}

您仍然需要捕获适当的 SQL 异常...

you use IsolationLevel:

using (SqlConnection con = new SqlConnection(connectionString))
{
    using (SqlTransaction tran = con.BeginTransaction(IsolationLevel.Serializable))
    {
        SqlCommand cmd = con.CreateCommand();

        // etc...

        con.Open();


    }
}

You will still need to catch the appropriate SQL exceptions...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文