Looking for work? Check out our jobs area.
*/

Other Views

corner
*/

ADONET FAQ - Updating the Dataset With the Updated Records

How do I update the dataset with the updates in records?

You can update the dataset by calling the Update() method of the data adapter.

C# Version
 
DataTable dt = ds.Tables["Article"];
dt.Rows[2]["lines"] = 600;
da.Update(ds, "Article");


VB.Net Version
Dim dt = ds.Tables("Article")
dt.Rows(2)("lines") = 700
da.Update(ds, "Article")


Here ‘da’ and ‘ds’ are the references of the DataAdapter and DataSet objects respectively.

Back
corner
© 1996-2008 CommunityHeaven LLC. All rights reserved. Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
North American business development: Nicolai Wadstrom. Publisher: Lars Hagelin.
Resource Listings