I have a scenario like this:


"select ib1,ib2,ib3 from TABLE1 WHERE ib4= 'g' "

I use the dataadapeter to fill a dataset with this data...


Then I modify the data offline by editing the dataset


The I want to update the database by using the dataadapter "Update" command

For that to work I need to specify an updatecommand and an insert command.

How do I do that? I haven't been able to find good info? I want to use stored procedures.


help
Henrik