. */ Doctrine::autoload('Doctrine_Export'); /** * Doctrine_Export_Sqlite * * @package Doctrine * @author Konsta Vesterinen * @author Lukas Smith (PEAR MDB2 library) * @author Lorenzo Alberton (PEAR MDB2 Interbase driver) * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ */ class Doctrine_Export_Firebird extends Doctrine_Export { /** * create a new database * * @param string $name name of the database that should be created * @return void */ public function createDatabase($name) { throw new Doctrine_Export_Firebird_Exception( 'PHP Interbase API does not support direct queries. You have to ' . 'create the db manually by using isql command or a similar program'); } /** * drop an existing database * * @param string $name name of the database that should be dropped * @return void */ public function dropDatabase($name) { throw new Doctrine_Export_Firebird_Exception( 'PHP Interbase API does not support direct queries. You have ' . 'to drop the db manually by using isql command or a similar program'); } }