DB2 XML 编程,第 1 部分: 理解 XML 数据模型
2010-10-01 16:25:02 来源:WEB开发网最后,使用 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));
}
- ››db2 对float类型取char后显示科学计数法
- ››DB2中出现SQL1032N错误现象时的解决办法
- ››DB2 锁升级示例
- ››db2诊断系列之---定位锁等待问题
- ››db2 命令选项解释
- ››XML 转成 数组对象
- ››XML注意的转义字符
- ››xml文件正确性验证类实现
- ››DB2 最佳实践: 使用 DB2 pureXML 管理 XML 数据的...
- ››DB2 9.5 SQL Procedure Developer 认证考试 735 准...
- ››DB2 9.5 SQL Procedure Developer 认证考试 735 准...
- ››DB2 9.5 SQL Procedure Developer 认证考试 735 准...
更多精彩
赞助商链接