86b319e618
require_once bug fix
20 lines
559 B
PHP
20 lines
559 B
PHP
<?php
|
|
require_once(Doctrine::getPath().DIRECTORY_SEPARATOR."Session.class.php");
|
|
/**
|
|
* 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];
|
|
}
|
|
}
|
|
?>
|