国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 吉安县| 贵港市| 莫力| 始兴县| 平江县| 泗洪县| 通道| 兴山县| 皮山县| 景东| 淳安县| 天津市| 六枝特区| 尉犁县| 探索| 白水县| 浪卡子县| 宁阳县| 枣强县| 福泉市| 柞水县| 阿尔山市| 长垣县| 会同县| 天长市| 阿勒泰市| 崇文区| 江油市| 怀宁县| 瑞丽市| 通江县| 石河子市| 崇州市| 沁阳市| 阿克| 姜堰市| 防城港市| 林西县| 武宁县| 鲁山县| 阳高县|