1
0
mirror of synced 2025-01-18 22:41:43 +03:00
doctrine2/classes/Session/Pgsql.class.php
doctrine 571cb46726
2006-04-13 20:37:28 +00:00

18 lines
418 B
PHP

<?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];
}
}
?>