. */ /** * UpdateStatement = UpdateClause [WhereClause] * * @package Doctrine * @subpackage Query * @author Guilherme Blanco * @author Janne Vanhala * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link http://www.phpdoctrine.org * @since 2.0 * @version $Revision$ */ class Doctrine_Query_Production_UpdateStatement extends Doctrine_Query_Production { protected $_updateClause; protected $_whereClause; public function syntax($paramHolder) { // UpdateStatement = UpdateClause [WhereClause] $this->_updateClause = $this->AST('UpdateClause', $paramHolder); if ($this->_isNextToken(Doctrine_Query_Token::T_WHERE)) { $this->_whereClause = $this->AST('WhereClause', $paramHolder); } } public function buildSql() { // The 1=1 is needed to workaround the affected_rows in MySQL. // Simple "UPDATE table_name SET column_name = value" gives 0 affected rows. return $this->_updateClause->buildSql() . (($this->_whereClause !== null) ? ' ' . $this->_whereClause->buildSql() : ' WHERE 1 = 1'); } /** * Visitor support. */ public function accept($visitor) { $this->_updateClause->accept($visitor); if ($this->_whereClause) { $this->_whereClause->accept($visitor); } $visitor->visitUpdateStatment($this); } /* Getters */ public function getUpdateClause() { return $this->_updateClause; } public function getWhereClause() { return $this->_whereClause; } }