What are the differences between RAW, AUTO and Explicit
modes in retrieving data from SQL Server in XML format?

Answer Posted / shobana

RAW

The RAW mode takes the query result and transforms each row
in the result set into an XML element with a generic
identifier row as the element tag and the columns in the
SELECT as attributes.

AUTO

The AUTO mode returns query results in a simple, nested XML
tree. Each table in the FROM clause for which at least one
column is listed in the SELECT clause is represented as an
XML element. The columns listed in the SELECT clause are
mapped to the appropriate element's attributes. The columns
can be optionally mapped to subelements. The nesting of the
elements or hierarchy in the result set is based on the
order of tables identified by the columns specified in the
SELECT clause. The leftmost table will be the top element.
The second leftmost table (identified by columns in the
SELECT statement) will be nested within the top element, and
so on.

EXPLICIT

In EXPLICIT mode, you can explicitly define the shape of the
resulting XML tree. Using this mode requires that the
queries be written in a specific way, so that additional
information about the desired nesting is specified
explicitly as part of the query.

Is This Answer Correct ?    7 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can I retrieve two tables of data at a time by using data reader? Data reader read and forward only, how is it possible to get 2 tables of data at a time?

710


What are the different layers of ado.net?

742


How to store data in memory?

690


What is connection pooling and what is the maximum pool size in ado.net connection string?

709


What are all components of ADO.Net data provider?

795


What is the difference between an ADO.NET Dataset and an ADO Recordset?

786


What is partial class?

732


How to work with disconnected data - the dataset and sqldataadapter?

722


Which is better entity framework or ado.net?

700


How many major types of connection objects in ADO.NET?

798


Does executenonquery return a value?

704


Define ado.net?

795


Which is faster ado.net or linq?

751


What is datatable in ado.net?

706


what is the difference betwen typed dataset and untyped dataset?in general which dataset can we use in programming?

743