使用 Zend_Db 时如何将值设置为 NULL [英] How to Set a Value to NULL when using Zend_Db

查看:26
本文介绍了使用 Zend_Db 时如何将值设置为 NULL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当使用 Zend_Db 执行 UPDATE 和 INSERT 查询时,我经常需要将值设置为等于 NULL(不是 '').然而, Zend_Db::insert() 和 Zend_Db::update() 的默认行为似乎是将空值转换为空字符串 ('') 并照此放入数据库.

When performing UPDATE and INSERT queries using Zend_Db, I frequently need to set values equal to NULL (not ''). However, the default behavior of Zend_Db::insert() and Zend_Db::update() seems to be that values that are empty are translated into empty strings ('') and put into the database as such.

如果 php 中的值为空,有没有人知道实际强制 NULL 值进入字段的方法?

Does anyone know of way to actually force a NULL value to go into fields if the value is empty in php?

推荐答案

尝试将受影响的字段设置为:new Zend_Db_Expr('NULL')

Try setting the affected fields to: new Zend_Db_Expr('NULL')

这篇关于使用 Zend_Db 时如何将值设置为 NULL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆