DataReader 绑定DataGridView有两种方式
2020-12-13 01:35
标签:datagridview style c tar ext color 第一种:借助于BindingSource 第二种:借助DataTable 获取DataGridView的选择的行 DataReader 绑定DataGridView有两种方式,搜素材,soscw.com DataReader 绑定DataGridView有两种方式 标签:datagridview style c tar ext color 原文地址:http://www.cnblogs.com/xrtd/p/3741951.html
sqlDataReader Sdr=通过查询函数得到的sqlDataReader类型的数据;
BindingSource Bs=new BindingSource() ;
Bs.DataSource=Sdr;
DataGridView.DataSource=Bs;
sqlDataReader Sdr=通过查询函数得到的sqlDataReader类型的数据;
DataTable Dt=new DataTable();
Dt.Load(Sdr);
DataGridView.DataSource=Bs;
例如将选择的行的第一列的值转换成string的类型并赋给Num
string
Num=Convert.ToString(DataGridView[0,DataGridView.CurrentCell.RowIndex].Value);
这样选中的行的第一列就转换成了string类型的数据,可以通过SQL语句进行其他的操作。
上一篇:JavaScript作用域精解
下一篇:多线程之间实现通讯
文章标题:DataReader 绑定DataGridView有两种方式
文章链接:http://soscw.com/essay/23902.html