Refilling table

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

I have several tables in a dataset. How can I reread the data from
underlying database in only one of the tables?

Thanks

Regards
 
You can call myDataSet.Tables[myTableIndex].Clear

THen just call Da.Fill again on the same table.

HTH,

Bill
 
Back
Top