XQuery - If Then Else
XQuery fornece uma construção if-then-else muito útil para verificar a validade dos valores de entrada transmitidos. A seguir, está a sintaxe da construção if-then-else.
Sintaxe
if (condition) then
...
else
...
Exemplo
Usaremos o arquivo books.xml a seguir e aplicaremos a ele a expressão XQuery contendo uma construção if-then-else para recuperar os títulos desses livros com um valor de preço maior que 30.
books.xml
<?xml version="1.0" encoding="UTF-8"?>
<books>
<book category="JAVA">
<title lang="en">Learn Java in 24 Hours</title>
<author>Robert</author>
<year>2005</year>
<price>30.00</price>
</book>
<book category="DOTNET">
<title lang="en">Learn .Net in 24 hours</title>
<author>Peter</author>
<year>2011</year>
<price>40.50</price>
</book>
<book category="XML">
<title lang="en">Learn XQuery in 24 hours</title>
<author>Robert</author>
<author>Peter</author>
<year>2013</year>
<price>50.00</price>
</book>
<book category="XML">
<title lang="en">Learn XPath in 24 hours</title>
<author>Jay Ban</author>
<year>2010</year>
<price>16.50</price>
</book>
</books>
A seguinte expressão XQuery deve ser aplicada ao documento XML acima.
books.xqy
<result>
{
if(not(doc("books.xml"))) then (
<error>
<message>books.xml does not exist</message>
</error>
)
else (
for $x in doc("books.xml")/books/book where $x/price>30
return $x/title
)
}
</result>
Resultado
<result>
<title lang="en">Learn .Net in 24 hours</title>
<title lang="en">Learn XQuery in 24 hours</title>
</result>
Verifique o resultado
Para verificar o resultado, substitua o conteúdo de books.xqy (fornecido no capítulo Configuração do ambiente ) pela expressão XQuery acima e execute o programa java XQueryTester.