how to convert an ado recordset xml format to an ado.net dataset xml

A

afsheen

Hi,

I have a visual basic client using soap tool kit 3 using consuming vb.net
web service . I wanted to know that at the server side when i receive an ado
recordset xml format string , how can i convert to ado.net dataset xml
format to load it to a dataset ... i.e converting an ado recordset xml
format to an ado.net dataset

thanks
 
C

Cor

Hi afsheen,

If it is only for reading it is as far as I know simple to do with

dataadapter.fill(dataset, recordset).

But when you want to use the update that recordset using the dataset, than I
did not see anything in the documentation.

I hope this helps,

Cor
 

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

Top