. */ Doctrine::autoload('Doctrine_Import'); /** * @package Doctrine * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @author Konsta Vesterinen * @author Lorenzo Alberton (PEAR MDB2 Interbase driver) * @author Lukas Smith (PEAR MDB2 library) * @version $Revision$ * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 */ class Doctrine_Import_Firebird extends Doctrine_Import { /** * list all tables in the current database * * @return array data array */ public function listTables() { $query = 'SELECT RDB$RELATION_NAME FROM RDB$RELATIONS WHERE RDB$SYSTEM_FLAG=0 AND RDB$VIEW_BLR IS NULL'; return $this->conn->fetchColumn($query); } /** * list all fields in a tables in the current database * * @param string $table name of table that should be used in method * @return mixed data array on success, a MDB2 error on failure * @access public */ public function listTableFields($table) { $table = $this->conn->quote(strtoupper($table), 'text'); $query = 'SELECT RDB\$FIELD_NAME FROM RDB$RELATION_FIELDS WHERE UPPER(RDB$RELATION_NAME) = ' . $table; return $this->conn->fetchColumn($query); } /** * list all users * * @return array data array containing all database users */ public function listUsers() { return $this->conn->fetchColumn('SELECT DISTINCT RDB$USER FROM RDB$USER_PRIVILEGES'); } /** * list the views in the database * * @return array data array containing all database views */ public function listViews() { return $this->conn->fetchColumn('SELECT DISTINCT RDB$VIEW_NAME FROM RDB$VIEW_RELATIONS'); } /** * list the views in the database that reference a given table * * @param string $table table for which all references views should be found * @return array data array containing all views for given table */ public function listTableViews($table) { $query = 'SELECT DISTINCT RDB$VIEW_NAME FROM RDB$VIEW_RELATIONS'; $table = $this->conn->quote(strtoupper($table), 'text'); $query .= 'WHERE UPPER(RDB\$RELATION_NAME) = ' . $table; return $this->conn->fetchColumn($query); } /** * list all functions in the current database * * @return array data array containing all availible functions */ public function listFunctions() { $query = 'SELECT RDB$FUNCTION_NAME FROM RDB$FUNCTIONS WHERE RDB$SYSTEM_FLAG IS NULL'; return $this->conn->fetchColumn($query); } /** * This function will be called to get all triggers of the * current database ($this->conn->getDatabase()) * * @param string $table The name of the table from the * previous database to query against. * @return array data array containing all triggers for given table */ public function listTableTriggers($table = null) { $query = 'SELECT RDB$TRIGGER_NAME FROM RDB$TRIGGERS WHERE RDB$SYSTEM_FLAG IS NULL OR RDB$SYSTEM_FLAG = 0'; if ( ! is_null($table)) { $table = $this->conn->quote(strtoupper($table), 'text'); $query .= 'WHERE UPPER(RDB$RELATION_NAME) = ' . $table; } return $this->conn->fetchColumn($query); } }