Hi guys, I know how to add a new row using a data adapter, but I don't know how to update a row using a data adapter.
Instead of usingWhat would I use to update a row.VB Code:
datRow = datSet.Tables("Telephone_Stores").NewRow
Thanks
Printable View
Hi guys, I know how to add a new row using a data adapter, but I don't know how to update a row using a data adapter.
Instead of usingWhat would I use to update a row.VB Code:
datRow = datSet.Tables("Telephone_Stores").NewRow
Thanks
dataAdapter.Update(dataSet)
Anyone have any ideas on this topic?
I found the answer Here