BaseX XQuery替换

时间:2012-11-28 09:28:44

标签: replace xquery basex xquery-update

我有以下问题。我想通过使用baseX作为数据库替换我的xquery文件中的元素的值。 xquery代码如下:

    let $db := doc('update.xml')

replace value of node $db//elem with 'haha'

return <result> {$db//elem/text()} </result>

xml文档包含以下元素:

<?xml version="1.0" encoding="ISO-8859-1"?>
<root xmlns:xs="http://www.w3.org/2001/XMLSchema-instance">
<check>
    <ok>
        <elem>test</elem>
        <help></help>
    </ok>
</check>
</root> 

每次我想执行这个xquery时都会抛出这样的错误:

Expecting 'where', 'order' or 'return' expression

那么我该怎么做或改变,只是用元素中的“haha”替换文本“test”? 如果我只使用这行代码就行了,但是我必须读出URL-Parameter所以我需要更多行代码,除了“replace ....”行!

1 个答案:

答案 0 :(得分:1)

let启动一个flwor-expression,它可能不直接包含update语句。您必须在这两者之间加上return

let $db := doc('update.xml')
return
  replace value of node $db//elem with 'haha'

您还可以进行任意计算,但请确保查询不返回任何输出。

没有way to use updating statements and return a result at the same time