How to Set a Value to NULL when using Zend_Db(使用 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Zend_Db 时如何将值设置为 NULL
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- PHP - if 语句中的倒序 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
