Common.php 1.03 KB
Newer Older
zYne's avatar
zYne committed
1
<?php
2
Doctrine::autoload('Doctrine_Connection');
zYne's avatar
zYne committed
3 4
/**
 * standard connection, the parent of pgsql, mysql and sqlite
5 6 7 8 9 10 11 12
 * @package     Doctrine
 * @category    Object Relational Mapping
 * @link        www.phpdoctrine.com
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @since       1.0
 * @version     $Revision$
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
 */
zYne's avatar
zYne committed
13 14 15 16 17 18 19 20
class Doctrine_Connection_Common extends Doctrine_Connection {
    /**
     * Adds an driver-specific LIMIT clause to the query
     *
     * @param string $query
     * @param mixed $limit
     * @param mixed $offset
     */
21
    public function modifyLimitQuery($query,$limit = false,$offset = false,$isManip=false) {
zYne's avatar
zYne committed
22 23 24 25 26 27 28 29 30 31 32
        if($limit && $offset) {
            $query .= " LIMIT ".$limit." OFFSET ".$offset;
        } elseif($limit && ! $offset) {
            $query .= " LIMIT ".$limit;
        } elseif( ! $limit && $offset) {
            $query .= " LIMIT 999999999999 OFFSET ".$offset;
        }

        return $query;
    }
}
33