This commit is contained in:
parent
755316c3fc
commit
486375f844
1 changed files with 7 additions and 8 deletions
|
@ -88,13 +88,12 @@ class Doctrine_Export_Firebird extends Doctrine_Export
|
||||||
$table = $this->conn->quoteIdentifier($table, true);
|
$table = $this->conn->quoteIdentifier($table, true);
|
||||||
$name = $this->conn->quoteIdentifier($name, true);
|
$name = $this->conn->quoteIdentifier($name, true);
|
||||||
|
|
||||||
$triggerSql = 'CREATE TRIGGER ' . $trigger_name . ' FOR ' . $table . '
|
$triggerSql = 'CREATE TRIGGER ' . $trigger_name . ' FOR ' . $table
|
||||||
ACTIVE BEFORE INSERT POSITION 0
|
. ' ACTIVE BEFORE INSERT POSITION 0 AS'
|
||||||
AS
|
. ' BEGIN'
|
||||||
BEGIN
|
. ' IF (NEW.' . $name . ' IS NULL OR NEW.' . $name . ' = 0) THEN'
|
||||||
IF (NEW.' . $name . ' IS NULL OR NEW.' . $name . ' = 0) THEN
|
. ' NEW.' . $name . ' = GEN_ID('.$sequence_name.', 1)'
|
||||||
NEW.' . $name . ' = GEN_ID('.$sequence_name.', 1);
|
. ' END';
|
||||||
END';
|
|
||||||
$result = $this->conn->exec($triggerSql);
|
$result = $this->conn->exec($triggerSql);
|
||||||
|
|
||||||
// TODO ? $this->_silentCommit();
|
// TODO ? $this->_silentCommit();
|
||||||
|
@ -549,4 +548,4 @@ class Doctrine_Export_Firebird extends Doctrine_Export
|
||||||
|
|
||||||
return $query;
|
return $query;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue