*/ 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 */ public function modifyLimitQuery($query,$limit = false,$offset = false,$isManip=false) { if ($limit && $offset) { $query .= " LIMIT ".$limit." OFFSET ".$offset; } elseif ($limit && ! $offset) { $query .= " LIMIT ".$limit; } elseif ( ! $limit && $offset) { $query .= " LIMIT 999999999999 OFFSET ".$offset; } return $query; } }