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

19 lines
453 B
PHP
Raw Normal View History

2006-08-22 03:16:55 +04:00
<?php
require_once("Common.php");
/**
* pgsql driver
*/
class Doctrine_Connection_Pgsql extends Doctrine_Connection_Common {
/**
* returns the next value in the given sequence
* @param string $sequence
* @return integer
*/
public function getNextID($sequence) {
$stmt = $this->query("SELECT NEXTVAL('$sequence')");
$data = $stmt->fetch(PDO::FETCH_NUM);
return $data[0];
}
}
?>