Code
给UpDateCommand,InsertCommand,DeleteCommand属性编写代码虽然简单,但是也有很多的问题!
因袭每个数据一共程序都有自己的命令构造器(Command Bulider) ..如果DataTable对应数据库智能个的一个表,那么就可以用CommandBulider为DataAdapter自动生成对应的UpDateCommand,InsertCommand,DeleteCommand属性,
在调用Update()时显式完成!
SqlDataAdapter 不会自动生成实现 DataSet 的更改与关联的 SQL Server 实例之间的协调所需的 Transact-SQL 语句。但是,如果设置了 SqlDataAdapter 的 SelectCommand 属性,则可以创建一个 SqlCommandBuilder 对象来自动生成用于单表更新的 Transact-SQL 语句。然后,SqlCommandBuilder 将生成其他任何未设置的 Transact-SQL 语句。
每当设置了 DataAdapter 属性,SqlCommandBuilder 就将其本身注册为 RowUpdating 事件的侦听器。一次只能将一个 SqlDataAdapter 与一个 SqlCommandBuilder 对象(或相反)互相关联。
为了生成 INSERT、UPDATE 或 DELETE 语句,SqlCommandBuilder 会自动使用 SelectCommand 属性来检索所需的元数据集。如果在检索到元数据后(例如在第一次更新后)更改 SelectCommand,则应调用 RefreshSchema 方法来更新元数据。
SelectCommand 还必须至少返回一个主键列或唯一的列。如果什么都没有返回,就会产生 InvalidOperation 异常,不生成命令。
SqlCommandBuilder 还使用由 SelectCommand 引用的 Connection、CommandTimeout 和 Transaction 属性。如果修改了这些属性中的一个或多个,或者替换了 SelectCommand 本身,用户则应调用 RefreshSchema。否则,InsertCommand、UpdateCommand 和 DeleteCommand 属性都保留它们以前的值。
如果调用 Dispose,则会解除 SqlCommandBuilder 与 SqlDataAdapter 的关联,并且不再使用生成的命令。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.SqlClient;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
SqlConnection conn = new SqlConnection("Server=zhuobin;uid=sa;pwd=zhuobin;database=Northwind");
string qry = @"select * from employees where country='uk'";
try
{
//create the DataAdapter
SqlDataAdapter da = new SqlDataAdapter();
da.SelectCommand = new SqlCommand(qry,conn);
//Create a command command
SqlCommandBuilder cb = new SqlCommandBuilder(da);
//Create the DataSet \
DataSet ds = new DataSet();
da.Fill(ds,"Employees");
//get data table reference
DataTable dt=ds.Tables["Employees"];
//add a row
DataRow newRow = dt.NewRow();
newRow["firstname"] = "Wei";
newRow["lastname"] = "jing";
newRow["titleofcourtesy"] = "Miss";
newRow["city"] = "Tengzhou";
newRow["country"] = "China";
dt.Rows.Add(newRow);
//display the data
foreach (DataRow row in dt.Rows)
{
Console.WriteLine("{0}{1}{2}",row["firstname"].ToString().PadRight(15),row["lastname"].ToString().PadLeft(25),row["city"]);
}
da.Update(ds,"employees");
}
catch (SqlException ex)
{
Console.WriteLine("The error :{0}", ex.Message);
}
finally
{
conn.Close();
}
Console.ReadLine();
}
}
}