Using XML in a DataSet 

With ADO.NET you can fill a DataSet from an XML stream or document. You can use the XML stream or document to supply to the DataSet either data, schema information, or both. The information supplied from the XML stream or document can be combined with existing data or schema information already present in the DataSet.

ADO.NET also allows you to create an XML representation of a DataSet, with or without its schema, in order to transport the DataSet across HTTP for use by another application or XML-enabled platform. In an XML representation of a DataSet, the data is written in XML and the schema, if it is included inline in the representation, is written using the XML Schema definition language (XSD). XML and XML Schema provide a convenient format for transferring the contents of a DataSet to and from remote clients.

In This Section

  • DiffGrams
    Provides details on the DiffGram, an XML format used to read and write the contents of a DataSet.
  • Writing a DataSet as XML Data
    Discusses how to generate the contents of a DataSet as XML data, and the different XML format options you can use.
  • Nested DataRelations
    Discusses the importance of nested DataRelation objects when representing the contents of a DataSet as XML data, and describes how to create them.
  • Overview of ADO.NET
    Describes the ADO.NET architecture and components, and how to use them to access existing data sources as well as to manage application data.

See Also

Other Resources

Using DataSets in ADO.NET