北大青鸟光谷校区

北大青鸟光谷校区

  • 北大青鸟徐东校区
  • 北大青鸟光谷校区
  • 北大青鸟宏鹏IT校区
  • 荆州青鸟之家
  • 襄阳青鸟之家

15902769092

百日千才

关于ADO.NET增删查改的三种套路

2011-12-11 16:55来源:武汉北大青鸟光谷校区作者:admin

  北大青鸟武汉宏鹏光谷校区老师解读:在.NET教学过程中,有许多关于ADO.NET增删查改的知识,现在将这些知识总结入下,希望对学生们的学习带来一些帮助。

        三套路-----增删改

  Code

  1 using System.Data.SqlClient;

  2

  3 SqlConnection conn = new SqlConnection("xxx");

  4

  5

  6 string sql = "xxx";

  7

  8 SqlCommand comm = new SqlCommand(sql, conn);

  9

  10 conn.Open();

  11

  12 comm.ExecuteNonQuery();

  13

  14 conn.Close();

  三套路-----查(绑定到DataGridView

  Code

  1 using System.Data.SqlClient;

  2

  3 SqlConnection conn = new SqlConnection("xxx");

  4

  5 string sql = "xxx";

  6

  7 SqlDataAdapter da = new SqlDataAdapter(sql, conn);

  8

  9 DataSet ds = new DataSet();

  10

  11 da.Fill(ds);

  12

  13 dataGridView1.DataSource = ds.Tables[0];

  14

  15 //要更新 查询语句要 查询主键列

  16

  17 SqlCommandBuilder sd = new SqlCommandBuilder(da);

  18

  19 da.Update(ds.Tables[0]);

  三套路----查(绑定到ListView)

  代码

  using System.Data.SqlClient;

  SqlConnection conn = new SqlConnection("xxx");

  string sql = "xx";

  SqlCommand comm = new SqlCommand(sql, conn);

  conn.Open();

  SqlDataReader read = comm.ExecuteReader();

  while (read.Read())

  {

  ListViewItem lvi = new ListViewItem(read["xxx"].ToString());

  lvi.Tag = read["id"];

  listView1.Items.Add(lvi);

  lvi.SubItems.AddRange(new String[] { read["xxx"].ToString() });

  }

  read.Close();

  conn.Close();

        北大青鸟武汉宏鹏光谷校区的ACCP6.0课程包括JAVA方向和.NET方向,该课程以企业需求为导向,旨在让学生学会技能的同时,更成功实现就业。

关闭

只为了方便您就学 北大青鸟光谷校区 北大青鸟光谷校区

武汉市江夏区华泰街武昌理工学院对面

全真项目实战 入学签就业协议

Copyright (c) 2006-2021 武汉宏鹏教育咨询有限公司 版权所有 All Rights Reserved.