using System;
using System.Data ;
using System.Data.SqlClient ;
namespace DataReaderExample
{
/// <summary>
/// Class1 的摘要说明。
/// </summary>
class DataReaderExample
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
SqlConnection llSqlcnt = new SqlConnection (@"Data Source = (local) ; Integrated Security = SSPI ;" +"Initial Catalog = Northwind") ;
llSqlcnt.Open () ;
SqlDataAdapter thisSda = new SqlDataAdapter ("SELECT 产品ID ,产品名称 FROM 产品" ,llSqlcnt) ;
SqlCommandBuilder scbd = new SqlCommandBuilder (thisSda) ;
DataSet dset = new DataSet () ;
thisSda.Fill (dset,"产品") ;
Console.WriteLine ("jfslja;fjs{0}" , dset.Tables ["产品"].Rows [2]["产品名称"]) ;//产品表//Rows[2]表示"产品名称"那一列第二行的意思.
dset.Tables ["产品"].Rows [2]["产品ID"] ="1" ;
thisSda.Update(dset ,"产品") ;
Console.WriteLine ("{0}",dset.Tables ["产品"].Rows [2]["产品ID"]) ;
//
// TODO: 在此处添加代码以启动应用程序
//
}
}
}