本文介绍了在WinForm中的GridView中绑定DataReader的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以在GridView中绑定DataReader?
请帮助..
Is it possible to bind a DataReader in a GridView?
Please help..
推荐答案
conn.Open();
SqlCommand cmd= new SqlCommand("<your sql="" command="">", conn);
SqlDataReader dr = cmd.ExecuteReader();
Gridview1.DataSource = dr;
Gridview1.DataBind();
conn.Close();
</your>
希望对您有所帮助,
:)
I hope this help,
:)
SqlConnection con = new SqlConnection("Your Connection String Here");
con.Open();
SqlCommand cmdQuery = new SqlCommand("Your Query Here", con);
SqlDataReader drQuery = cmdQuery.ExecuteReader();
DataSet dsQuery = new DataSet();
DataTable dtQuery = new DataTable();
dsQuery.Tables.Add(dtQuery);
dsQuery.Load(drQuery, LoadOption.PreserveChanges, dsQuery.Tables[0]);
DataGridView1.DataSource = dsQuery.Tables[0];
祝您编码愉快.
Happy Coding.
这篇关于在WinForm中的GridView中绑定DataReader的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!