Commit d9678357 authored by zYne's avatar zYne

ported getTemporaryTableQuery from MDB2

parent 5329c382
...@@ -482,6 +482,17 @@ class Doctrine_Export_Firebird extends Doctrine_Export ...@@ -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
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment