国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

在.Net1.2中對Xquery的支持

2024-07-10 12:59:31
字體:
供稿:網(wǎng)友
在.net1.2中支持xquery,xquery使用一種叫flwor的查詢語言(音flower).例子如下:

using system;
using system.io;
using system.xml;
using system.xml.query;
using system.data.sqlxml;
namespace xquery{
public class xquerysample{
public static void main(string[] args) {
system.xml.xmldatasourceresolver ds = new system.xml.xmldatasourceresolver ();
ds.add("bookstore","books.xml");
streamwriter writer=new streamwriter("output.xml");
string [email protected]"<bookstore> {
for $b in document('bookstore')/bookstore/book
where $b/@genre='philosophy' and $b/@publicationdate='1991'
return $b/title
}
</bookstore>";
xqueryprocessor xp = new xqueryprocessor ();
xp.compile(query);
xp.execute(ds, writer);
writer.close();
}
}
}

books.xml


<?xml version="1.0" encoding="utf-8"?>
<!-- this file represents a fragment of a bookstore database -->
<bookstore>
<book genre="autobiography" publicationdate="1981" isbn="1-861-11-0">
<title>the autobiography of benjamin franklin</title>
<author>
<first-name>benjamin</first-name>
<last-name>franklin</last-name>
</author>
<price>8.99</price>
</book>
<book genre="novel" publicationdate="1967" isbn="0-201-63361-2">
<title>the confidence man</title>
<author>
<first-name>herman</first-name>
<last-name>melville</last-name>
</author>
<price>11.99</price>
</book>
<book genre="philosophy" publicationdate="1991" isbn="1-861001-57-6">
<title>the gorgias</title>
<author>
<name>plato</name>
</author>
<price>9.99</price>
</book>
</bookstore>

output.xml

<?xml version="1.0" encoding="utf-8"?>
<bookstore>
<title>the gorgias</title>
</bookstore>
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 湖南省| 高清| 鹰潭市| 通江县| 兴城市| 深水埗区| 莱芜市| 景洪市| 泰顺县| 乐至县| 邵阳市| 凤翔县| 马公市| 安泽县| 自治县| 盐源县| 阿拉善右旗| 册亨县| 高州市| 浏阳市| 江阴市| 琼海市| 咸宁市| 横峰县| 台州市| 定结县| 泗洪县| 都安| 彩票| 本溪市| 上蔡县| 射洪县| 扬州市| 五峰| 阳原县| 淄博市| 潜山县| 泽州县| 大关县| 库伦旗| 黄冈市|