Retrieving Data as XML from SQL Server
By Mitchell Harper
All the hype that once surrounded XML is finally starting to die down, and developers are really beginning to harness the power and flexibility of the language. XML is a data descriptive language that uses a set of user-defined tags to describe data in a hierarchically-structured format.
The release of Microsoft SQL Server 2000 a couple of months ago saw Microsoft jump on the XML band-wagon too - they've included a number of different ways to manipulate data as well-formed XML. Firstly, there's the SQL XML support. Microsoft's implementation of SQL XML provides a simple configuration tools that allows developers to gain remote access to databases using URL based queries over HTTP. For example, we can setup an SQL XML virtual directory on our Web server named "myVirtual". Then, assuming we have the appropriate security permissions, we can use any browser to query our database using a simple URL based query (such as: http://www.myserver.com/myVirtual?SQL=select+*+from+products+for+xml+auto). This then returns our results as an XML based recordset.
Notice the "for xml auto" part of our query above? This determines the way in which SQL Server 2000 shapes our data. There are three shaping methods:
"for xml auto": Returns XML elements that are nested, based on which tables are listed in the "from" part of the query, and which fields are listed in the "select" part.
"for xml raw": Returns XML elements with the "row" prefix (ex: "<row tProduct …>"). Each column in a table is represented as an attribute and null column values aren't included.
"for xml explicit": Explicit mode is the most complex shaping method used in SQL Server 2000. It allows users to query a data source in such a way that the names and values of the returned XML are specified before the query batch is executed.
It's this third method, "for xml explicit", that I will discuss today. The explicit method, in my opinion, is the most powerful feature of SQL Server 2000. Not only can we specify how our XML data is returned to us, but we can also use record filters and sorting patterns as well, because, as we all know, sorting an XML document any other way is almost impossible.
Now, let's get into it. This article is aimed at the intermediate to advanced developer who's looking to use XML in the BLL (business logic layer) of an n-Tier based application where speed is a critical issue. To benefit from this article, you'll need to equip yourself with the following:
A Win2k box running IIS and SQL Server 2000 with XML support
Basic ASP, SQL, XML and XSL knowledge
Step 1: Creating our sample database
On your SQL Server 2000 server, open Enterprise Manager and create a new database named "myProducts". Then, using either Enterprise Manager, or Query Analyser, create the tables shown below:
(http://sitepointstatic.com/graphics/515hierarchy.gif)
(Note: catId, productId and descId are all auto-incrementing identity fields)
As you've probably guessed, we're using three tables to simulate a very simple product description database (let's assume we sell books). The diagram above shows the hierarchy of our data: categories listing products, listing their descriptions. Before we progress to the next step, we'll need to create some dummy data in our tables. To maximise productivity and minimise the length of this article, I've created a simple T-SQL script, that will populate our tables as needed, you can download it here (http://www.webmasterbase.com/examples/sql2000xml/dummydata.sql). The script will create 3 categories, 7 products and 7 descriptions.