数据库数字列自动转换为整数
使用 Zend_Db_Table_Abstract 检索表行,我的 BIGINT 字段自动转换为整数。这不是必需的,并且在 32 位系统上显然是一个等待发生的错误。
有没有一种简单的方法可以将这些值保留为字符串,而无需设置复杂的映射类?
Using the Zend_Db_Table_Abstract to retrieve table rows, my BIGINT fields are being automatically cast to integers. This is not required, and on 32 bit systems is obviously a bug waiting to happen.
Is there a simple way to keep these values as strings without setting up complex mapping classes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确定数据库适配器(在 PHP 端,而不是 ZF 端)本身没有这样做吗?
我知道 PDO_MySQL 和 MySQLi 默认情况下都会这样做,尽管我不能 100% 确定它们如何在 32 位和 64 位系统上处理 BIGINT 值。
Are you sure that the database adapter (on the PHP side, not ZF side) itself isn't doing that?
I know PDO_MySQL and MySQLi both do that by default, though I'm not 100% sure how they handle BIGINT values on 32bit vs 64bit systems.