1
0
mirror of synced 2025-01-20 07:21:40 +03:00

ported getTemporaryTableQuery from MDB2

This commit is contained in:
zYne 2007-06-13 21:34:00 +00:00
parent 5329c3827c
commit d9678357aa

View File

@ -482,6 +482,17 @@ class Doctrine_Export_Firebird extends Doctrine_Export
// TODO ? $this->_silentCommit(); // TODO ? $this->_silentCommit();
return $result; 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 * create sequence
* *