. */ /** * @package Doctrine * @url http://www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @author Jukka Hassinen * @version $Id$ */ /** * class Doctrine_Schema_Database * Holds information on a database */ class Doctrine_Schema_Database extends Doctrine_Schema_Object implements Countable, IteratorAggregate { /** Aggregations: */ /** Compositions: */ var $m_; /*** Attributes: ***/ /** * Database name * @access public */ public $name; /** * Database driver type * @access public */ public $type; /** * Database server version * @access public */ public $version; /** * The underlaying engine in the database e.g. InnoDB or MyISAM in MySQL. * @access public */ public $engine; /** * Character encoding e.g. ISO-8859-1 or UTF-8 etc. * @access public */ public $charset; /** * Foreign key constraints in the database * @access public */ public $foreignKeyRelations; /** * Tables in the database * @access private */ private $childs; /** * * @return * @access public */ public function __clone( ) { } // end of member function __clone /** * * @return * @access public */ public function __toString( ) { } // end of member function __toString /** * * @return bool * @access public */ public function isValid( ) { } // end of member function isValid /** * * @param Doctrine_Schema_Table table * @return Doctrine_Schema_Table * @access public */ public function addTable( $table = null ) { } // end of member function addTable } // end of Doctrine_Schema_Database