1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/Doctrine/Connection/Firebird.php

22 lines
624 B
PHP
Raw Normal View History

2006-08-22 03:16:55 +04:00
<?php
/**
* firebird driver
*/
class Doctrine_Connection_Firebird extends Doctrine_Connection {
public function modifyLimitQuery($query,$limit,$offset) {
return preg_replace('/^([\s(])*SELECT(?!\s*FIRST\s*\d+)/i',
"SELECT FIRST $limit SKIP $offset", $query);
2006-08-22 03:16:55 +04:00
}
/**
* 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];
}
}