数据库 null 在soap xml 中作为字符串 null 返回
我将 Livecycle 用于 Web 服务层。
如果数据库中存在空值,则节点中将包含字符串“null”。
如何确保从节点中删除“空”值,并判断节点的值是否真的为“空”?
I'm using Livecycle for a web service tier.
If there is a null in the database, the nodes have a string 'null' in them.
how can I make sure that I strip out the 'null' values form the nodes and also tell if the value of the node is really 'null'?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IsNull('','')
已添加到 SQL 中。这样数据库就会捕获真正的 db null 并将其设为空白。IsNull('','')
is added to the SQL. That way the database catches the true db null and makes it a blank.