How to update the data in dataset

Showing Answers 1 - 2 of 2 Answers

vvijaychandra

  • Jun 24th, 2006
 

The dataset can be considered as an in-memory cache of the data retrieved from the database.So the dataset consites of the tables, relationship and constraints.

To insert, update or delete the data in the database we use the sqlcommand  

  Was this answer useful?  Yes

chandan singh

  • Jul 4th, 2006
 

we use ISqlcommandBuilder interface to add, edit or delete any data in the original database.

system.data.ISqlCommandBuilder commandbuilder= new SqlCommandBuilder("dataAdapter");

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions