using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using System.Data;
namespace ADO.AddNewRow
{
class Program
{
static void Main(string[] args)
{
/// <summary>
/// 添加数据
/// </summary>
SqlConnection cnn = new SqlConnection(@"Server=MICHAELYANG\SQLEXPRESS;Integrated Security=True;" + "Database=NorthwindEn");//使用链接字符串创建一个连接对象
SqlDataAdapter adapter = new SqlDataAdapter("select CustomerID,CompanyName from Customers",cnn);//创建SqlDataAdapter对象
SqlCommandBuilder builder = new SqlCommandBuilder(adapter);//把adapter作为参数传递给SqlCommandBuilder(对象)构造函数,SqlCommandBuilder构造函数会自动帮我们生成Sql
adapter.UpdateCommand = builder.GetUpdateCommand();//將通过SqlCommandBuilder构建好的Sql赋给SqlDataAdapter对象中的Updatd方法
DataSet ds = new DataSet();//创建DataSet对象,用于填充数据
adapter.Fill(ds, "Customers");//填充数据
Console.WriteLine("# rows before change:{0}", ds.Tables["Customers"].Rows.Count );//通过Rows集合的属性Count读取填充到Customers DataTable(内存)中的数据总行数
DataRow row = ds.Tables["Customers"].NewRow();//通过DataRow对象的NewRow方法创建新行对象Row
row["CustomerID"] = "Think";//给新对象Row字段赋值
row["CompanyName"] = "Clochase.Inc.";
ds.Tables["Customers"].Rows.Add(row );//使用Rows集合的Add()方法添加新行
Console.WriteLine("# rows after change:{0}", ds.Tables["Customers"].Rows.Count);//记录修改后的数据总行数
adapter.Update(ds, "Customers");//关键的一步,將DataTable(内存)表中的数据更新到磁盘上的数据库
cnn.Close();//关闭数据库连接
Console.ReadKey();
}
}
}
//重点:
DataSet是内存中非连接的数据副本
DataAdapter负责链接到磁盘上的数据库
因此需要调用它(SqlDataAdapter)的Update()方法
才能使DataSet中的内存数据与磁盘上的数据同步