Dataset cycle

  • Thread starter Thread starter JJ
  • Start date Start date
J

JJ

Hi All,

I have created a oledbdataadapter/OledbConnection
and dataset. I would like to cycle through all records
that the dataset has to implant into a treeview as nodes.
How do i do this? This is a win app.

Thanks,

JJ
 
foreach (DataTable dTable in DataSet.Tables)
{
foreach(DataRow dRow in dTables.Rows)
{
...
}
}
 
Back
Top