typed dataset tableadapters and update (basic question)

  • Thread starter Thread starter milkmate
  • Start date Start date
M

milkmate

Hi, I'm using ado.net 2.0 and I have this strongly typed dataset that
has this table that has some custom sql update queries.

The thing is, my customDataSetTableAdapter.myTable has no generic
"Update()" method. It only has some ".myCustomUpdate(param1,param2)"
method, that I can't use to send all the changes at once, like I could
do with the .update().

So when I have all the changes made to the dataset in memory, how is it
that I'm supposed to persist them in the real database table?

Thanks.
 
I'm guessing customDataSetTableAdapter itself has an Update method, and you
can use that.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top