1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/Doctrine/Connection/Firebird.php
2006-08-21 23:16:55 +00:00

21 lines
585 B
PHP

<?php
/**
* firebird driver
*/
class Doctrine_Connection_Firebird extends Doctrine_Connection {
public function modifyLimitQuery($query,$limit,$offset) {
return preg_replace("/([\s(])*SELECT/i","\\1SELECT TOP($from, $count)", $query);
}
/**
* returns the next value in the given sequence
* @param string $sequence
* @return integer
*/
public function getNextID($sequence) {
$stmt = $this->query("SELECT UNIQUE FROM ".$sequence);
$data = $stmt->fetch(PDO::FETCH_NUM);
return $data[0];
}
}
?>