0
Answer

Update DataSet and Database

xkabuff

xkabuff

20y
1.6k
1
hi, i am creating a web service that has a method in it. this method accepts a DataSet and then updates its DataSet from it. This is what I'm doing: [WebMethod] public void GetChanges(DataSet ds) { dsMaster = ds; daGames.Update(dsMaster, "tblGames"); daPubs.Update(dsMaster, "tblPublishers"); daCats.Update(dsMaster, "tblCategories"); } My problem is that the DataSet dsMaster is being updated but the database isn't. Anyone can help me with this pls? thnx :-)