ported getTemporaryTableQuery from MDB2
This commit is contained in:
parent
5329c3827c
commit
d9678357aa
@ -482,6 +482,17 @@ class Doctrine_Export_Firebird extends Doctrine_Export
|
||||
// TODO ? $this->_silentCommit();
|
||||
return $result;
|
||||
}
|
||||
/**
|
||||
* A method to return the required SQL string that fits between CREATE ... TABLE
|
||||
* to create the table as a temporary table.
|
||||
*
|
||||
* @return string The string required to be placed between "CREATE" and "TABLE"
|
||||
* to generate a temporary table, if possible.
|
||||
*/
|
||||
public function getTemporaryTableQuery()
|
||||
{
|
||||
return 'GLOBAL TEMPORARY';
|
||||
}
|
||||
/**
|
||||
* create sequence
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user