zend framework 多表查询时出错

当进行join操作的时候Zend_Db_Table_Select会报一个异常"Select query cannot join with another table"

是因为Zend_Db_Table_Select会检查Select的表是不是来自于已定义的当前表,所以当进行Join操作的时候因为引入了其它表,所以会报错。

解决方法是把_integrityCheck设成false

$select = $this->select()->setIntegrityCheck(false);

这样再进行后续的join操作

$select = $select->from(.....)->joinLeft(.....)->where(.....)....

例如

$select = $this->select();

$select = $this->select()->setIntegrityCheck(false);

$select

->from('setting_force', '*')

->join('users', 'setting_force.ForceUser=users.Email');

转载于:https://www.cnblogs.com/zcy_soft/archive/2010/11/19/1881643.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值