C#中使用DataGridView控件绑定SQL数据库

C#中使用DataGridView控件绑定SQL数据库,第1张

如果你会显示一个表的内容到datagridview

的话,那就很容易了.

你用两个datagridview

就可以了.分别绑定两个表的数据.

点击Button1的时候让第一个datagridview显示,

datagridview1.visible=true

datagridview2.visible=false

点击button2的时候

,让他们反过来.你把两个dtv放置的时候让他们重叠就能出现你要的效果了!!!!!!!!!

good

luck!

String connStr = @"Data Source=E8AAC22FD7514AC\sqlexpressInitial Catalog=stuPersist Security Info=TrueUser ID=saPassword=123"//别复制,没用的。不一样‘要自己写个 SqlConnection con = new SqlConnection(connStr)

SqlCommand cmd = new SqlCommand()

cmd.CommandText = "select * from student"

cmd.Connection = con

SqlDataAdapter sda = new SqlDataAdapter()

sda.SelectCommand = cmd

con.Open()

DataSet ds = new DataSet()

sda.Fill(ds, "student")

con.Close()

GridView1.DataSource = ds

GridView1.DataBind()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6764965.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-28
下一篇 2023-03-28

发表评论

登录后才能评论

评论列表(0条)

保存