Реферат: Использование XML совместно с SQL
<authors>
<au_fname>Morningstar</au_fname>
<au_lname>Greene</au_lname>
<address>22 Graybar House Rd.</address>
</authors>
<authors>
<au_fname>Michel</au_fname>
<au_lname>DeFrance</au_lname>
<address>3 Balding Pl.</address>
</authors>
Документ получился более громоздким: все поля представлены элементами.
С помощью ключевого слова XMLDATA можно получить документ со схемой данных.
select au_fname, au_lname, address from authors where au_fname like 'M%' for xml auto, xmldata |
Этот запрос вернет такой документ:
<Schema name="Schema1" xmlns="urn:schemas-microsoft-com:xml-data" xmlns:dt="urn:schemas-microsoft-com:datatypes"> <ElementType name="authors" content="empty" model="closed"> <AttributeType name="au_fname" dt:type="string" /> <AttributeType name="au_lname" dt:type="string" /> <AttributeType name="address" dt:type="string" /> <attribute type="au_fname" /> <attribute type="au_lname" /> <attribute type="address" /> </ElementType> </Schema> <authors xmlns="x-schema:#Schema1" К-во Просмотров: 534
Бесплатно скачать Реферат: Использование XML совместно с SQL
|