little bug fix
This commit is contained in:
parent
584c55faac
commit
a4167f8de8
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class Doctrine_Sequence_Firebird extends Doctrine_Sequence
|
||||||
$query = 'SELECT GEN_ID(' . $sequenceName . ', 1) as the_value FROM RDB$DATABASE';
|
$query = 'SELECT GEN_ID(' . $sequenceName . ', 1) as the_value FROM RDB$DATABASE';
|
||||||
try {
|
try {
|
||||||
|
|
||||||
$result = $this->conn->fetchOne($query, 'integer');
|
$result = $this->conn->fetchOne($query);
|
||||||
|
|
||||||
} catch(Doctrine_Connection_Exception $e) {
|
} catch(Doctrine_Connection_Exception $e) {
|
||||||
if ($onDemand && $e->getPortableCode() == Doctrine::ERR_NOSUCHTABLE) {
|
if ($onDemand && $e->getPortableCode() == Doctrine::ERR_NOSUCHTABLE) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue