2006年11月10日 DAL & ID

        2006年11月10日 星期五 天气多云         Last Modify: Nov 10 2006

==================================================================================

    努力的看教程中……

没想到所谓的DAL(Data Access Layer,数据抽象层)在.net 2.0里居然就是一个DataSet强类型数据定义得XML文件(XSD后缀)…… .net 2.0 可以为你方便的生成对应的TableAdapters命名空间和与XSD文件同名的类,这样在商务层和表现曾总可以方便快捷的调用,他举的例子只写了3行代码就实现了2层架构……

    在这个类中DotNetFramework还帮助你实现了一些有用的成员,比如果XSD文件名+Row,可以获得对应的行,真实太无敌了,虽然知道实现起来很简单……

用批量的方法(不选择哪个为单个语句生成SQL 语句,use the batch update pattern )来修改数据库:

    NorthwindTableAdapters.ProductsTableAdapter productsAdapter =

     new NorthwindTableAdapters.ProductsTableAdapter();

 

    // For each product, double its price if it is not discontinued and

    // there are 25 items in stock or less

    Northwind.ProductsDataTable products = productsAdapter.GetProducts();

    foreach (Northwind.ProductsRow product in products)

     if (!product.Discontinued && product.UnitsInStock <= 25)

         product.UnitPrice *= 2;

 

    // Update the products

    productsAdapter.Update(products);

 

如果打上那个勾,修改单条记录:

    NorthwindTableAdapters.ProductsTableAdapter productsAdapter = new NorthwindTableAdapters.ProductsTableAdapter();

 

    // Delete the product with ProductID 3

    productsAdapter.Delete(3);

 

    // Update Chai (ProductID of 1), setting the UnitsOnOrder to 15

    productsAdapter.Update("Chai", 1, 1, "10 boxes x 20 bags",

     18.0m, 39, 15, 10, false, 1);

 

    // Add a new product

    productsAdapter.Insert("New Product", 1, 1,

     "12 tins per carton", 14.95m, 15, 0, 10, false);

 

在插入数据库新的元组的时候我们往往希望他能够返回对应的新生成的ID(如插入了一个新的产品,需要获得对应的ID),我们不要在SQL语句中使用@@Identity,而要使用scope_identity()方法,原因如下:

http://weblogs.sqlteam.com/travisl/archive/2003/10/29/405.aspx

    @@Identity

    Many TSQL books show you how to use @@Identity to get the identity of the most recently added row. Many articles online, or in magazines show the same. What you might not know is that it is potentially a source for some very hard to trace bugs in your application.

 

    @@Identity is potentially a very, very bad thing! In almost every case, you should use scope_identity() instead.

 

    Why? @@Identity returns the most recently created identity for your current connection. When you first use it, it might be fine. Until someone adds a trigger. If the trigger causes another identity to be created, guess which identity you'll get in your call to @@Identity? Not nice.

 

    scope_identity() is much nicer. It gives you what you're expecting.

====================================================================

SQL Server 2005 联机丛书

http://msdn2.microsoft.com/zh-cn/library/ms190315.aspx

SCOPE_IDENTITY (Transact-SQL)

 

返回插入到同一作用域中的标识列内的最后一个标识值。一个范围是一个模块:存储过程、触发器、函数或批处理。因此,如果两个语句处于同一个存储过程、函数或批处理中,则它们位于相同的作用域中。

 

 

语法

 

SCOPE_IDENTITY()

 

备注

 

    SCOPE_IDENTITY、IDENT_CURRENT 和 @@IDENTITY 是相似的函数,因为它们都返回插入到标识列中的值。

 

    IDENT_CURRENT 不受作用域和会话的限制,而受限于指定的表。IDENT_CURRENT 返回为任何会话和作用域中的特定表所生成的值。有关详细信息,请参阅 IDENT_CURRENT (Transact-SQL)。

 

    SCOPE_IDENTITY 和 @@IDENTITY 返回在当前会话中的任何表内所生成的最后一个标识值。但是,SCOPE_IDENTITY 只返回插入到当前作用域中的值;@@IDENTITY 不受限于特定的作用域。

 

    例如,有两个表 T1 和 T2,并且在 T1 上定义了 INSERT 触发器。当将某行插入 T1 时,触发器被激发,并在 T2 中插入一行。 该方案演示了两个作用域:在 T1 上的插入,以及在 T2 通过触发器的插入。

 

    假设 T1 和 T2 都有标识列,@@IDENTITY 和 SCOPE_IDENTITY 将在 T1 上的 INSERT 语句的最后返回不同的值。@@IDENTITY 将返回在当前会话中的任何作用域内插入的最后一个标识列的值。这是在 T2 中插入的值。SCOPE_IDENTITY() 将返回在 T1 中插入的 IDENTITY 值。这是在同一个作用域内发生的最后的插入。如果在任何 INSERT 语句作用于作用域中的标识列之前调用 SCOPE_IDENTITY() 函数,则该函数将返回空值。

 

    如果语句和事务失败,它们会更改表的当前标识,从而使标识列中的值出现不连贯现象。即使未提交试图向表中插入值的事务,也永远无法回滚标识值。例如,如果因 IGNORE_DUP_KEY 冲突而导致 INSERT 语句失败,表的当前标识值仍然会增加。

 

返回类型

 

numeric

 

示例

 

以下示列创建两个表,TZ 和 TY,并在 TZ 中创建一个 INSERT 触发器。当将某行插入表 TZ 中时,触发器 (Ztrig) 将激发并在 TY 中插入一行。

 

    USE tempdb

    GO

    CREATE TABLE TZ (

     Z_id int IDENTITY(1,1)PRIMARY KEY,

     Z_name varchar(20) NOT NULL)

 

    INSERT TZ

     VALUES ('Lisa')

    INSERT TZ

     VALUES ('Mike')

    INSERT TZ

     VALUES ('Carla')

 

    SELECT * FROM TZ

 

    --Result set: This is how table TZ looks.

    Z_id Z_name

    -------------

    1 Lisa

    2 Mike

    3 Carla

 

    CREATE TABLE TY (

     Y_id int IDENTITY(100,5)PRIMARY KEY,

     Y_name varchar(20) NULL)

 

    INSERT TY (Y_name)

     VALUES ('boathouse')

    INSERT TY (Y_name)

     VALUES ('rocks')

    INSERT TY (Y_name)

     VALUES ('elevator')

 

    SELECT * FROM TY

    --Result set: This is how TY looks:

    Y_id Y_name

    ---------------

    100 boathouse

    105 rocks

    110 elevator

 

    /*Create the trigger that inserts a row in table TY

    when a row is inserted in table TZ*/

    CREATE TRIGGER Ztrig

    ON TZ

    FOR INSERT AS

     BEGIN

     INSERT TY VALUES ('')

     END

 

    /*FIRE the trigger and determine what identity values you obtain

    with the @@IDENTITY and SCOPE_IDENTITY functions.*/

    INSERT TZ VALUES ('Rosalie')

 

    SELECT SCOPE_IDENTITY() AS [SCOPE_IDENTITY]

    GO

    SELECT @@IDENTITY AS [@@IDENTITY]

    GO

 

 

下面是结果集:

 

    SCOPE_IDENTITY

    4

    /* SCOPE_IDENTITY returned the last identity value in the same scope. This was the insert on table TZ.*/

 

    @@IDENTITY

    115

    /* @@IDENTITY returned the last identity value inserted to TY by the trigger. This fired because of an earlier insert on TZ */

 

Note:

Make sure that you end the INSERT statement with a semi-colon before adding the SELECT statement or the new method doesn't have a parameter for each column in the Products table.

 

一般来说我们插入数据返回的都是受影响的行数,这次是ID,所以要把ExecuteNonQuery改为executeScale

 

        Rev 1.0        Creat Document Nov 10 2006

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章