Mapping fields of two dataset schemas

  • Thread starter Thread starter Ben Boer
  • Start date Start date
B

Ben Boer

I have two dataset schemas and I want to map the fields of one to the
other. I know that I can use a dataadapter to map the fields of a
dataset to the results of select query executed as part of a Fill
call. But is there a datadapter for XML, as opposed to a database.

Any help would be appreciated.

Thanks,
Ben
 
Hi Ben,

No the only thing there is for an XML file is the dataset.readXML and
writeXML.

An XML file is nothing more on disk than a textfile, not a database.

I hope this helps anyhow?

Cor
 
Back
Top