DataSet中怎么查询指定条件的记录
DataSet中怎么查询指定条件的记录
怎么样移到上一条记录或下一条记录呀?
------解决方案--------------------DataTable dt = ds.Tables[0];
DataRow[] rows = dt.Select( "id=1 ");
上一条下一条
dt.Rows[0];
dt.Rows[1];
------解决方案--------------------DataSet.Table[ " "].Select( "条件 ")
------解决方案--------------------DataView dv = DataSet.Table[ " "].DefaultView;
dv.RowFilter = "检索条件 ";