黑马程序员技术交流社区

标题: ado.net 存储查询到的离线数据 [打印本页]

作者: 汪振    时间: 2013-3-1 09:41
标题: ado.net 存储查询到的离线数据
  1. using (SqlConnection conn = new SqlConnection(constr))
  2.             {
  3.                 conn.Open();
  4.                 using (SqlCommand cmd = conn.CreateCommand())
  5.                 {
  6.                     cmd.CommandText = "select * from T_tavle";
  7.                  
  8.                     DataSet dst = new DataSet();
  9.                     SqlDataAdapter adapter = new SqlDataAdapter(cmd);
  10.                     adapter.Fill(dst);
  11.                     
  12.                     DataTable table =dst.Tables[0];
  13.                     DataRowCollection rows= table.Rows;


  14.                     for(int i=0;i<rows.Count;i++)
  15.                     {
  16.                         DataRow row =(DataRow)row[i];
  17.                         int age=(int)row["age"];
  18.                     }
  19.                     //foreach(DataRow row in dst.Tables[0].Rows)
  20.                     //{
  21.                     //    int age=(int)row["age"];
  22.                     //}
  23.                 }
  24.             }
复制代码
将查询的数据存储到dataset的一个方法





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2