明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

教學(xué)體會(huì): ADO.NET的連接式與斷開式

[摘要]關(guān)于ADO.NET的書籍和文章很多,在這里主要使用在我教學(xué)中給學(xué)生做演示的兩個(gè)小例子,來比較ADO.NET的連接式和斷開式,程序員一般不喜歡說教,下面就以代碼說話:連接式:SqlConnection sqlConn=new SqlConnection("server=.;database...

       關(guān)于ADO.NET的書籍和文章很多,在這里主要使用在我教學(xué)中給學(xué)生做演示的兩個(gè)小例子,來比較ADO.NET的連接式和斷開式,程序員一般不喜歡說教,下面就以代碼說話:

連接式:

SqlConnection sqlConn=new SqlConnection("server=.;database=pubs;user id=sa;password=;");
SqlCommand sqlComm=new SqlCommand("select * from authors",sqlConn);
//操作在打開和斷開數(shù)據(jù)庫(kù)之間
sqlConn.Open();
SqlDataReader dr=sqlComm.ExcuteReader();
while(dr.Read())
{
      for  (int i=0; i<dr.FieldCount; i++)
      {
              Console.Write(dr.GetValue(i).ToString()+" ");
      }
      Console.WriteLine();
}
dr.Close();
sqlConn.Close();

斷開式

SqlConnection sqlConn=new SqlConnection("server=.;database=pubs;user id=sa;password=;");
SqlDataAdapter adapter=new SqlDataAdapter("select * from authors",sqlConn);
//用來自動(dòng)生產(chǎn)更新命令
SqlCommandBuilder cb=new SqlCommandBuilder(adapter);
sqlConn.Open();
DataSet ds=new DataSet();
adapter.Fill(ds);
sqlConn.Close();
//處理數(shù)據(jù)在打開和關(guān)閉之后
for (int i=0; i<ds.Tables[0].Rows.Count; i++)
{
       for (int j=0; j<ds.Tables[0].Columns.Count; j++
       {
              Console.Write(ds.Tables[0].Rows[i][j]+" ");
       }
       Console.WriteLine();
}
//更改數(shù)據(jù)
ds.Tables[0].Rows[0][1]="A";
ds.Tables[0].Rows[1].Delete();
//更新數(shù)據(jù)庫(kù)
sqlConn.Open();
adapter.Update(ds);
sqlConn.Close();