我有以下方法返回数据集.我使用的是.NET 2.0
DataSet ds = GetAllRecords();
我想从特定行的每列中获取值并将其绑定到变量.
怎么能实现这一目标?
目前该方法返回表中的所有行,我必须根据ID找到该特定行.
但是,如果那是不可能的,我可以来
DataSet ds = GetSpecificRecord(id);
但我仍然需要从每列获取值并将其绑定到变量.
请指教.
解决方法
// Create a table DataTable table = new DataTable("users"); table.Columns.Add(new DataColumn("Id",typeof(int))); table.Columns.Add(new DataColumn("Name",typeof(string))); table.Rows.Add(1,"abc"); table.Rows.Add(2,"ddd"); table.Rows.Add(3,"fff"); table.Rows.Add(4,"hhh d"); table.Rows.Add(5,"hkf ds"); // Search for given id e.g here 1 DataRow[] result = table.Select("Id = 1"); // this will return one row for above data foreach (DataRow row in result) { Console.WriteLine("{0},{1}",row[0],row[1]); }