2010-08-30 71 views
0

对于一个项目,我需要更新PK包含两列的行。Zend Framework复合主键更新

起初我以为我应该这样做,但它给了我错误。任何人都有解决方案?

$data = array('foo','bar'); 
$where = $this->_getGateway()->getAdapter() 
        ->quoteInto(array('customerId=?','date=?'), array($comment->customerId, $comment->date)); 
$this->_getGateway()->update($data, $where); 

感谢

回答

2

明白了!

$whereId = $this->_getGateway()->getAdapter()->quoteInto('customerId=?', $comment->customerId); 
$whereDate = $this->_getGateway()->getAdapter()->quoteInto('date=?', $comment->date); 
$this->_getGateway()->update($data, array($whereId, $whereDate));