Author: jwage Date: 2008-08-27 05:28:37 +0100 (Wed, 27 Aug 2008) New Revision: 4839
Added: branches/1.0/lib/Doctrine/Query/Forupdate.php Modified: branches/1.0/lib/Doctrine/Query.php Log: fixes #1340 Added: branches/1.0/lib/Doctrine/Query/Forupdate.php =================================================================== --- branches/1.0/lib/Doctrine/Query/Forupdate.php (rev 0) +++ branches/1.0/lib/Doctrine/Query/Forupdate.php 2008-08-27 04:28:37 UTC (rev 4839) @@ -0,0 +1,39 @@ +<?php +/* + * $Id: Where.php 1352 2007-05-15 10:07:05Z zYne $ + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * This software consists of voluntary contributions made by many individuals + * and is licensed under the LGPL. For more information, see + * <http://www.phpdoctrine.org>. + */ + +/** + * Doctrine_Query_Forupdate + * + * @package Doctrine + * @subpackage Query + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.phpdoctrine.org + * @since 1.0 + * @version $Revision: 1352 $ + * @author Konsta Vesterinen <[EMAIL PROTECTED]> + */ +class Doctrine_Query_Forupdate extends Doctrine_Query_Part +{ + public function parse($forUpdate) + { + return (bool) $forUpdate; + } +} \ No newline at end of file Modified: branches/1.0/lib/Doctrine/Query.php =================================================================== --- branches/1.0/lib/Doctrine/Query.php 2008-08-27 04:19:37 UTC (rev 4838) +++ branches/1.0/lib/Doctrine/Query.php 2008-08-27 04:28:37 UTC (rev 4839) @@ -1147,6 +1147,8 @@ $q = $this->_conn->modifyLimitQuery($q, $this->_sqlParts['limit'], $this->_sqlParts['offset']); } + $q .= $this->_sqlParts['forUpdate'] === true ? ' FOR UPDATE ' : ''; + // return to the previous state if ( ! empty($string)) { array_pop($this->_sqlParts['where']); --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "doctrine-svn" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.co.uk/group/doctrine-svn?hl=en-GB -~----------~----~----~----~------~----~------~--~---
