ASP.NET 2.0数据教程之六十三:在事务里对数据库修改进行封装
GridView is editable." /> <siteMapNode title="Batch Deleting" url="~/BatchData/BatchDelete.aspx" description="Explore how to create an interface for batch deleting by adding a CheckBox to each GridView row." /> <siteMapNode title="Batch Inserting" url="~/BatchData/BatchInsert.aspx" description="Examine the steps needed to create a batch inserting interface, where multiple records can be created at the click of a button." /> </siteMapNode> 完成后,花几 分钟在浏览器里登录页面,左面的菜单列出了本部分的各项 图3:Site Map现在包含了本章节 第二步:更新数据访问层以支 持数据库事务 就像我们在第一章《Creating a Data Access Layer》探讨 的一样,位于数据访问层的强类型数据集(Typed DataSet)由DataTables 和 TableAdapters构成. DataTables保存数据,而TableAdapters提供相应的方法从 数据库读取数据,并根据DataTables的改动对数据库做相应的更新,等等.记得 TableAdapters有2种更新数据的模式——Batch Update 和 DB- Direct.就Batch Update模式而言, TableAdapter可以传入DataSet, DataTable, 或DataRows集,遍历这些数据对要添加、修改、删除的行执行相应的 InsertCommand, UpdateCommand, or DeleteCommand方法。就DB-Direct模式而言 ,TableAdapter传入的是那些需要进行添加、更新、删除操作的某条记录的列的 值,再使用这些值执行相关的InsertCommand, UpdateCommand, 或DeleteCommand 命令. TableAdapter自动生成的方法并不使用事务.默认状态下, TableAdapter执行的每一个insert, update, 或delete操作都看作是单独的、互 不相干的.假定在业务逻辑层BLL里使用DB-Direct模式来向数据库添加十条记录, 代码将分十次调用TableAdapter的Insert方法. 如果前5条记录添加正常,而在添 加第六条记录时发生异常,前5条记录仍然保存在数据库.同样的,用Batch Update模式来操作的话,效果亦然. 在某些情况下,我们想确保在进行一 系列的改动时引入原子数(atomicity).为此,我们必须手动扩展TableAdapter, 通过添加一些新的方法将InsertCommand, UpdateCommand, 和DeleteCommands命 令置于事务之下.在第一章《Creating a Data Access Layer》里,我们考察了使 用部分类(partial classes)对强类型数据集(Typed DataSet)里的DataTable的函 数进行扩充.该技术同样适用于TableAdapter. 强类型数据集 Northwind.xsd位于App_Code文件夹的DAL子文件夹里.在DAL文件夹里再创建一个 名为TransactionSupport的子文件夹,再在里面添加一个新类,名为 ProductsTableAdapter.TransactionSupport.cs (见图4).该类包含 ProductsTableAdapter的使用事务的方法. 图4:创建一个名为TransactionSupport的新文件夹并添加一个名为 ProductsTableAdapter.TransactionSupport.cs的新类 在 ProductsTableAdapter.TransactionSupport.cs文件里键入如下的代码:
|
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |