MDB2 引号——空值?
根据 PEAR MDB2 文档,我可以选择使用第三个参数引用或不引用值:
$mdb2->quote($val1, "text", true) $mdb2->quote($val2, "integer", false)
有没有办法将空白值转换为 NULL?即,如果 $val1 为空或实际上为 null,则它将在插入/更新语句中显示为 NULL(而不是 '')。
According to the PEAR MDB2 documentation, I can optionally quote or not quote values using the third parameter:
$mdb2->quote($val1, "text", true)
$mdb2->quote($val2, "integer", false)
Is there a way to enable conversion of blank values to NULL? Ie, if $val1 were empty or actually null, it would appear as NULL in the insert/update statement (instead of '').
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于“编码员”没有足够的声誉来回答,我添加他的答案以从未回答的列表中获取问题:
对于整数,解决方案是在应用 $mdb2->quote 之前检查值。如果值为 '',则将其设置为 null。然而,相同的技术不适用于字符串(文本)。转换为 null ($textvalue = null) 的空文本字符串将通过以下方式渲染回空字符串
Since "a coder" does not have enough reputation to answer, I'm adding his answer to get the question from the unanswered list:
For integers, the solution is to check the value prior to applying $mdb2->quote. If the value is '', then set it to null. The same technique does not work with strings (text) however. Empty text strings converted to null ($textvalue = null) are rendered back to empty strings by