当实际为 null 时接收值为 null 的 xml
我正在 sql server 2005 上从 livecycle es 8.2 执行一个存储过程,
结果返回类似
<Table>
<Row>
<ID>1</ID>
<EN_Cd>EN</EN_Cd>
<FR_Cd>null</FR_Cd>
<EN_Nm>English</EN_Nm>
<FR_Nm>Anglais</FR_Nm>
<EN_Shrt_Dscrptn>null</EN_Shrt_Dscrptn>
<FR_Shrt_Dscrptn>null</FR_Shrt_Dscrptn>
</Row>
</Table>
我试图弄清楚为什么在结果中放入单词“null”的内容。
即使使用 xs:int 类型,它也会返回单词“null”,
jdbc 或 livecycle 中是否有某些内容可以解决此问题?
存储过程是一个简单的
select id, en_cd, fr_cd,
en_nm, fr_nm,
en_shrt_dscrptn, fr_shrt_dscrptn
from language
fr_nm,en_shrt_dscrptn,fr_shrt_dscrptn在数据库中为null,它们不包含值“null”。
I'm executing a stored procedure on sql server 2005 from livecycle es 8.2
the result return something like
<Table>
<Row>
<ID>1</ID>
<EN_Cd>EN</EN_Cd>
<FR_Cd>null</FR_Cd>
<EN_Nm>English</EN_Nm>
<FR_Nm>Anglais</FR_Nm>
<EN_Shrt_Dscrptn>null</EN_Shrt_Dscrptn>
<FR_Shrt_Dscrptn>null</FR_Shrt_Dscrptn>
</Row>
</Table>
I'm trying to figure out why the word "null" is put in the result.
Even with type xs:int it return the word "null"
is there something in the jdbc or livecycle that can fix this?
the stored procedure is a simple
select id, en_cd, fr_cd,
en_nm, fr_nm,
en_shrt_dscrptn, fr_shrt_dscrptn
from language
fr_nm, en_shrt_dscrptn, fr_shrt_dscrptn are null in the database, they do not contain the value "null".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 coalesce() 函数将 null 转换为空字符串,如下所示:
或者,您可以研究如何进行 XML 转换,并查看是否有办法在那里指定 null 处理选项。
Try using the coalesce() function to convert nulls to empty strings, like this:
Alternatively, you could investigate how the conversion to XML is happening, and see if there's a way to specify null-handling options there.
您可以使用 XSLT 转换从节点内容中删除 NULL。检查我的问题以获得进一步的解释
you can use a XSLT transformation for removing the NULL from the nodes content. check my questions for a further explanation on that