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

20 lines
524 B
PHP

<?php
Doctrine::autoload('Doctrine_Session');
/**
* mssql driver
*/
class Doctrine_Session_Mssql extends Doctrine_Session {
/**
* returns the next value in the given sequence
* @param string $sequence
* @return integer
*/
public function getNextID($sequence) {
$this->query("INSERT INTO $sequence (vapor) VALUES (0)");
$stmt = $this->query("SELECT @@IDENTITY FROM $sequence");
$data = $stmt->fetch(PDO::FETCH_NUM);
return $data[0];
}
}
?>