2006-04-13 20:37:28 +00:00
|
|
|
<?php
|
2006-05-24 22:33:48 +00:00
|
|
|
require_once("Common.class.php");
|
2006-04-13 20:37:28 +00:00
|
|
|
/**
|
|
|
|
* 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];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|