Xquery 中的返回语句
我想改变我的XQuery中当前的return语句,即:
return
<p>XML File Stored Successfully</p>
我想让这个return语句能够处理有错误的情况,然后向用户返回错误代码,如果没有错误,则返回向用户发送上述消息。
我认为出于我的目的,应该将 if-else 结构置于 return 之下。但我真的不知道 if 应该有什么条件,专家可以帮忙吗?提前致谢。
I want to change my current return statement in my XQuery, which is :
return
<p>XML File Stored Successfully</p>
I want to make this return statement capable of handling the situation if there is an error, then return an error code to the user, if there is no error, then return the message above to the user.
I think an if-else construct should be placed under return for my purpose. But I really have no idea what condition should be there for the if, could experts help a little? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XQuery 3.0 工作草案引入了 try-catch 表达式,这可能正是您正在寻找的:
The XQuery 3.0 working draft introduces try-catch expressions, which might be what you are looking for: