Zend Framework 复合主键更新
对于一个项目,我需要更新 PK 包含两列的行。
起初我想我应该这样做,但它给了我错误。有人有解决办法吗?
$data = array('foo','bar');
$where = $this->_getGateway()->getAdapter()
->quoteInto(array('customerId=?','date=?'), array($comment->customerId, $comment->date));
$this->_getGateway()->update($data, $where);
谢谢
For a project I need to update a row where the PK contains two columns.
At first I thought I should do it like this but it gives me errors. Anybody with a solution?
$data = array('foo','bar');
$where = $this->_getGateway()->getAdapter()
->quoteInto(array('customerId=?','date=?'), array($comment->customerId, $comment->date));
$this->_getGateway()->update($data, $where);
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
知道了!
Got it!