Find Row in Table and Update Db

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

JJ

Hi,

Ok using Typed Datasets and using a table in that
dataset that I am working on.

What do I use in order to find a particular row and be
able to update db with row changes? Do I use a dataview
thats tied to datatable and have it find it that way or is
their something else in order to find a particular row?

Thanks,
JJ
 
If you are using a DataAdapter just do the following:

DataAdapter.Update(DataSet)

or

DataAdapter.Update(DataSet.Table)
 
Back
Top