从DataSet中取数据
时间:2011-03-25 来源:失落小羊
DataSet包含的是 DataTable的集合。 DataTable 的一条记录是一个DataRow , 每条记录的一个字段是 DataColumn ,可以用 Row[ 1 或 "字段名"]取值。
DataSet ds=GetDataSource(); //取数据
if(null!=ds.Tables[0].Rows) //有记录
foreach ds.Tables.Rows
name= System.Convert.IsDBNull(Row["RowName"])?string.Empty:(string)Row["RowName"];
相关阅读 更多 +