Explain what a diffgram is, and a good use for one

Showing Answers 1 - 4 of 4 Answers

Swapna

  • Sep 12th, 2005
 

The DiffGram is one of the two XML formats that you can use to render DataSet object contents to XML. A good use is reading database data to an XML file to be sent to a Web Service.

  Was this answer useful?  Yes

Swapna

  • Sep 12th, 2005
 

The DiffGram is one of the two XML formats that you can use to render DataSet object contents to XML. A good use is reading database data to an XML file to be sent to a Web Service.

  Was this answer useful?  Yes

Praveen V

  • Sep 23rd, 2005
 

A DiffGram is an XML format that is used to identify current and original versions of data elements. The DataSet uses the DiffGram format to load and persist its contents, and to serialize its contents for transport across a network connection. When a DataSet is written as a DiffGram, it populates the DiffGram with all the necessary information to accurately recreate the contents, though not the schema, of the DataSet, including column values from both the Original and Current row versions, row error information, and row order.When sending and retrieving a DataSet from an XML Web service, the DiffGram format is implicitly used. Additionally, when loading the contents of a DataSet from XML using the ReadXml method, or when writing the contents of a DataSet in XML using the WriteXml method, you can select that the contents be read or written as a DiffGram.

  Was this answer useful?  Yes

SonalRattan

  • Jan 23rd, 2007
 

A diffgram is a means of rendering and serializing changes in a DataSet. Another good use of a diffgram would be to package updates to SQL server tables as xml files, The SQLXMLCommand object can apply diffgrams to SQL Server

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions