1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/Doctrine/Session/Pgsql.php
2006-05-30 09:02:35 +00:00

19 lines
447 B
PHP

<?php
require_once("Common.php");
/**
* pgsql driver
*/
class Doctrine_Session_Pgsql extends Doctrine_Session_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];
}
}
?>