26 lines
723 B
PHP
26 lines
723 B
PHP
<?php
|
|
/**
|
|
* standard connection, the parent of pgsql, mysql and sqlite
|
|
*/
|
|
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) {
|
|
if($limit && $offset) {
|
|
$query .= " LIMIT ".$limit." OFFSET ".$offset;
|
|
} elseif($limit && ! $offset) {
|
|
$query .= " LIMIT ".$limit;
|
|
} elseif( ! $limit && $offset) {
|
|
$query .= " LIMIT 999999999999 OFFSET ".$offset;
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
}
|
|
?>
|