XQuery OSB 将字符串转换为短日期
我需要将 String 转换为 xml 节点之一上的日期 它具有以下 xsd:
<xs:element minOccurs="0" name="executionDate" type="general:ShortDate"/>
我的字符串格式为 yyyymmdd 我需要将其转换为 ddmmyyyy ShortDate 格式。
我正在使用 OSB 并尝试按照以下方式执行此操作:
{xs:dateTime(xs:date('20041212'))}
并且我收到以下错误:
<con:reason xmlns:con="http://www.bea.com/wli/sb/context">OSB Insert action failed updating variable "body": {err}XP0021: "20041212": can not cast to {http://www.w3.org/2001/XMLSchema}date: error: date: Invalid date value: wrong type: 20041212</con:reason>
有人可以帮助我吗?
I need to convert String to the date on one of the xml nodes
which has the following xsd:
<xs:element minOccurs="0" name="executionDate" type="general:ShortDate"/>
my String is in format yyyymmdd i need to convert it to ddmmyyyy shortDate format.
I'm using OSB and try to do it the following way:
{xs:dateTime(xs:date('20041212'))}
and I'm getting the following error:
<con:reason xmlns:con="http://www.bea.com/wli/sb/context">OSB Insert action failed updating variable "body": {err}XP0021: "20041212": can not cast to {http://www.w3.org/2001/XMLSchema}date: error: date: Invalid date value: wrong type: 20041212</con:reason>
Can anybody just help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 XQuery 中,日期由 ISO 格式表示:yyyy-mm-dd。为了使您的查询编译,您希望将其转换为:
但结果是
我不认为您正在寻找的结果。
你能不只做这个吗?
In XQuery, a date is represented by the ISO format: yyyy-mm-dd. To make your query compile, you want to convert this to:
but then the result is
which I don't think you are looking for.
Can you not just do this?