WinForm的 DataGridView 绑定了数据源,数据不显示怎么办
给名叫CCS_info的DataGridView绑定了数据源,8个列的DataProperName也设定好了,数据就是显示不出来this.CCS_info.AutoGen...
给名叫 CCS_info 的 DataGridView 绑定了数据源,8个列的DataProperName也设定好了,数据就是显示不出来
this.CCS_info.AutoGenerateColumns = false;
string queryStr = "SELECT c_num, c_name, type, credit, term, c_time, c_room, t_name FROM CC_info where s_num='" + sno + "'";
con = new SqlConnection(conStr);
cmd = new SqlCommand(queryStr, con);
con.Open();
SqlDataReader dr = cmd.ExecuteReader();
BindingSource bs = new BindingSource();
bs.DataSource = dr;
this.CCS_info.DataSource = bs;
con.Close(); 展开
this.CCS_info.AutoGenerateColumns = false;
string queryStr = "SELECT c_num, c_name, type, credit, term, c_time, c_room, t_name FROM CC_info where s_num='" + sno + "'";
con = new SqlConnection(conStr);
cmd = new SqlCommand(queryStr, con);
con.Open();
SqlDataReader dr = cmd.ExecuteReader();
BindingSource bs = new BindingSource();
bs.DataSource = dr;
this.CCS_info.DataSource = bs;
con.Close(); 展开
3个回答
展开全部
SqlDataReader dr = cmd.ExecuteReader();
BindingSource bs = new BindingSource();
bs.DataSource = dr;
this.CCS_info.DataSource = bs;
改成
sqldataadapter da =new sqldataadapter(queryStr, con);
datatable dt=new datatable();
da.fill(dt);
this.CCS_info.DataSource = dt;
BindingSource bs = new BindingSource();
bs.DataSource = dr;
this.CCS_info.DataSource = bs;
改成
sqldataadapter da =new sqldataadapter(queryStr, con);
datatable dt=new datatable();
da.fill(dt);
this.CCS_info.DataSource = dt;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
微测检测5.10
2023-05-10 广告
2023-05-10 广告
您好!建议咨 深圳市微测检测有限公司,已建立起十余个专业实验室,企业通过微测检测就可以获得一站式的测试与认 证解决方案;(EMC、RF、MFi、BQB、QI、USB、安全、锂电池、快充、汽车电子EMC、汽车手机互 联、语音通话质量),认证遇...
点击进入详情页
本回答由微测检测5.10提供
展开全部
还缺少一个绑定事件吧?
this.CCS_info.datebind()
this.CCS_info.datebind()
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
试试绑定到DataTable看看 ?
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询