Client-side XML Formatting (SQLXML 4.0)

This topic provides information about client-side XML formatting. Client-side formatting refers to the formatting of XML on the middle tier.

[!참고] This topic provides additional information about using the FOR XML clause on the client side, and assumes you are already familiar with the FOR XML clause. For more information about FOR XML, see Constructing XML Using FOR XML.

Important   To use client-side FOR XML functionality with the new xml data type, clients should always use the SQL Native Client (SQLNCLI) data provider instead of the SQLOLEDB provider. SQLNCLI is the latest version of the SQL Server provider and fully understands data types introduced in SQL Server 2005. The behavior for client side FOR XML with the SQLOLEDB provider will treat xml data types as strings.

Formatting XML Documents on the Client Side

When a client application executes the following query:

SELECT FirstName, LastName
FROM   Person.Contact
FOR XML RAW

...only this part of the query is sent to the server:

SELECT FirstName, LastName
FROM   Person.Contact

The server executes the query and returns a rowset (which contains FirstName and LastName columns) to the client. The middle tier then applies the FOR XML transformation to the rowset and returns XML formatting to the client.

Similarly, when you execute an XPath query, the server returns the rowset to the client and the FOR XML EXPLICIT transformation is applied to the rowset on the client, generating the desired XML formatting.

The following table shows the modes you can specify with client-side FOR XML.

Client-side FOR XML mode Comment

RAW

Produces identical results when specified in client-side or server-side FOR XML.

NESTED

Is similar to FOR XML AUTO mode on the server-side.

EXPLICIT

Is similar to server-side FOR XML EXPLICIT mode.

[!참고] If you specify AUTO mode and request client-side XML formatting, the entire query is sent to the server; that is, XML formatting occurs on the server. This is done for convenience, but note that the NESTED mode returns base table names as element names in the XML document that is generated. Some of the applications you write might require base table names. For example, you might execute a stored procedure and load the resulting data in a Dataset (in the Microsoft .NET Framework), and then later generate a DiffGram to update data in the tables. In such a case, you would need the base table information and you would have to use the NESTED mode.

Benefits of Client-side XML formatting

The following are some benefits of formatting XML on the client.

If you have stored procedures on the server that return a single rowset, you can request client-side FOR XML transformation to generate an XML.

For example, consider the following stored procedure. This procedure returns the first and last names of employees from the Person.Contact table in the AdventureWorks database:

IF EXISTS (SELECT name FROM sysobjects
   WHERE name = 'GetContacts' AND type = 'P')
   DROP PROCEDURE GetContacts
GO
CREATE PROCEDURE GetContacts
AS
    SELECT   FirstName, LastName
    FROM     Person.Contact

The following sample XML template executes the stored procedure. The FOR XML clause is specified after the stored procedure name.

<ROOT xmlns:sql="urn:schemas-microsoft-com:xml-sql">
  <sql:query client-side-xml="1">
    EXEC GetContacts FOR XML NESTED
  </sql:query>
</ROOT>

Because the client-side-xml attribute is set to 1 (true) in the template, the stored procedure is executed on the server and the two-column rowset that is returned by the server is transformed into XML on the middle tier and returned to the client. (Only a partial result is shown here.)

 <ROOT xmlns:sql="urn:schemas-microsoft-com:xml-sql">
  <Person.Contact FirstName="Gustavo" LastName="Achong" /> 
  <Person.Contact FirstName="Catherine" LastName="Abel" />
</ROOT>

[!참고] When you are using the SQLXMLOLEDB Provider or SQLXML Managed Classes, you can use the ClientSideXml property to request client-side XML formatting.

The workload is more balanced.

Because the client does the XML formatting, the workload is balanced between the server and client, freeing the server to do other things.

Supporting Client-side XML Formatting

To support the client-side XML formatting functionality, SQLXML provides:

  • SQLXMLOLEDB Provider
  • SQLXML Managed Classes
  • Enhanced XML template support
  • SqlXmlCommand.ClientSideXml property
    You can specify client-side formatting by setting this property of the SQLXML managed classes to true.

Enhanced XML Template Support

The XML template in SQL Server 2005 has been enhanced with the addition of the client-side-xml attribute. If this attribute is set to true, XML is formatted on the client. Note that this template attribute is identical in functionality to the SQLXMLOLEDB Provider-specific ClientSideXML property.

[!참고] If you execute an XML template in an ADO application that is using the SQLXMLOLEDB Provider, and you specify both the client-side-xml attribute in the template and the provider ClientSideXML property, the value specified in the template takes precedence.

참고 항목

참조

Architecture of Client-side and Server-side XML Formatting (SQLXML 4.0)
FOR XML Security Issues (SQLXML 4.0)
xml Data Type Support in SQLXML 4.0
SQLXML Managed Classes
Client-side vs. Server-side XML Formatting (SQLXML 4.0)
SqlXmlCommand Object (SQLXML Managed Classes)

관련 자료

FOR XML을 사용하는 XML 생성
xml 데이터 형식

도움말 및 정보

SQL Server 2005 지원 받기