WEB开发网
开发学院数据库DB2 DB2 XML 编程,第 1 部分: 理解 XML 数据模型 阅读

DB2 XML 编程,第 1 部分: 理解 XML 数据模型

 2010-10-01 16:25:02 来源:WEB开发网   
核心提示: 最后,使用 XPath 在 DOM 对象层次结构中搜索给定价格范围内的所有商品(第 9 行),DB2 XML 编程,第 1 部分: 理解 XML 数据模型(7),并输出搜索到的每个商品的说明(第 10 行),第二种情况 —— 所有数据在数据库中存储为关系形式因为数据没有存

最后,使用 XPath 在 DOM 对象层次结构中搜索给定价格范围内的所有商品(第 9 行),并输出搜索到的每个商品的说明(第 10 行)。

第二种情况 —— 所有数据在数据库中存储为关系形式

因为数据没有存储为 XML 格式,所以需要在查询中使用 SQL/XML 发布函数执行转换。

清单 7. 使用 SQL/XML 发布函数执行转换

1. Statement dbstmt= conn.createStatement();
2. ResultSet dbResult = dbstmt.executeQuery("select xmlelement( name "Customer" ,
xmlattributes(customerid as "customerid" ),
xmlattributes(fname as "firstname" ),
xmlattributes(lname as "lastname" )
) from customer_table where customerid=custid");
3. XMLParse customerXML = new XMLParse(dbResult. getString(1));
5. dbResult = dbstmt.executeQuery("select xmlelement( name "items" ,
xmlelement( name "item" ,
xmlattributes(itemid as "id" ),
xmlattributes(description as "description" ),
xmlattributes(price as "price" ),
xmlattributes(date as "purchaseDate" )
)
) from purchase_table where customerid=custid");
6. if (dbResult.rs.next ()) {
7. Node itemsnode= customerXML.createNode (dbResult. getString(1));
8. customerXML.appendNode(itemsnode ,"/Customer",false);
}
9. customerXML.find("/Customer/Items/item[@price>15.0 and @price <25.5]",true);
10. for(int i=0;i < customerXML.currentFind.getLength();i++) {
11. System.out.println(customerXML.getValue("@description",i));
}

上一页  2 3 4 5 6 7 8 9  下一页

Tags:DB XML 编程

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接