防止事务并发(事务类型;事务隔离级别)
中间层组件将执行应用程序中的数据访问例程。该组件将调用多个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用
IsolationLevel
:您仍然需要捕获适当的 SQL 异常...
you use
IsolationLevel
:You will still need to catch the appropriate SQL exceptions...