ASP.NET 2.0数据教程之六十三:在事务里对数据库修改进行封装
t UpdateWithTransaction(Northwind.ProductsDataTable dataTable) { this.BeginTransaction(); try { // Perform the update on the DataTable int returnValue = this.Adapter.Update(dataTable); // If we reach here, no errors, so commit the transaction this.CommitTransaction(); return returnValue; } catch { // If we reach here, there was an error, so rollback the transaction this.RollbackTransaction(); throw; } } 将上述的UpdateWithTransaction()方法添加到文件 ProductsTableAdapter.TransactionSupport.cs里的ProductsTableAdapter class类。另外,还可以将该方法添加到业务逻辑层的ProductsBLL class类,不 过要做些许修改:即将this.BeginTransaction(), this.CommitTransaction(), and this.RollbackTransaction()三中方法里的关键字“this”替换 为“Adapter”(我们知道,ProductsBLL类里的ProductsTableAdapter 的name属性即是Adapter). UpdateWithTransaction()方法使用的是Batch Update模式,不过也可在事务里调用DB-Direct模式,就像下面的代码显示的那样 .DeleteProductsWithTransaction()方法接受一个int类型的List<T>,也 就是要删除的ProductIDs.该方法通过调用BeginTransaction来启动事务,然后在 try模块里对每一个ProductID值调用DB-Direct模式的Delete方法.如果任何一个 对Delete的调用出错,将转到catch 模块,事务将会回滚;如果所有对Delete的 调用成功,那就提交事务。添加该方法给ProductsBLL class 类.
在多个TableAdapters应用事务 到目前为止我们考察的是对ProductsTableAdapter里的多个命令采用原子 操作.如果我们是对多个不同的数据库表进行改动,并对这些改动执行原子操作那 又怎么办呢?比如:当删除一个category时,在删除之前我们想把该种类对应的 products分配给其它的category.对这种2步操作——分配products和 删除category——应该执行原子操作.但是ProductsTableAdapter只包 含修改Products表的方法;而CategoriesTableAdapter只包含修改Categories表 的方法.那么怎样使用一个包含这2个TableAdapters的事务呢? 其中一个 办法是向CategoriesTableAdapter添加一个名为 DeleteCategoryAndReassignProducts(categoryIDtoDelete, reassignToCategoryID)的方法.再定义一个方法来调用一个存储过程,使用事务 来达到分配products和删除category的目的.我们将在后面考察在一个存储过程里 开始、提交和回滚事务. 另一个方法是在数据访问层里添加一个类,来包 含DeleteCategoryAndReassignProducts(categoryIDtoDelete, reassignToCategoryID)方法.该方法创建CategoriesTableAdapter 和 the ProductsTableAdapter的实例,并将这2个TableAdapters的Connection属性设置 为相同的SqlConnection实例。这样,它们都将调用B |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |