tags:

views:

51

answers:

2

Hi,

If I have an existing DataTable (already filled) but then I want to refresh/reload the data from the database directly (as I know there was a non-ADO.net process that changed data without going through the DataTable), however do I do this "refresh". Note the database data at that point can overwrite whatever is in the DataTable.

thanks

+1  A: 

How about after clear your DataTable then fill it again.

Millionbonus
+1  A: 

Try using DataTable.Clear().

ydobonmai
Followed by a DataAdapter Fill?
Greg
yeah, with the new data.
ydobonmai

related questions