dbxml数据库中有如下数据库:
01 aa 001 02 aa 001
修改所有device的location的所有id为001 的改成002。修改操作的查询语句如下:
strQuery="for $i in collection('devcon.dbxml')/devices/device/location[id='001'] return replace value of node $i/id with \"002\"";
修改后数据库结果变为:
01 aa 002 02 aa 002
备注:具体可参见dbxml官方文档