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

  • Thread starter Thread starter afsheen
  • Start date Start date
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
 
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
 
Back
Top