Source for file Database.php

Documentation is available at Database.php

  1. <?php
  2. /*
  3.  *  $Id: Database.php 1080 2007-02-10 18:17:08Z romanb $
  4.  *
  5.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  6.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  7.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  8.  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  9.  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  10.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  11.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  12.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  13.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  14.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  15.  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  16.  *
  17.  * This software consists of voluntary contributions made by many individuals
  18.  * and is licensed under the LGPL. For more information, see
  19.  * <http://www.phpdoctrine.com>.
  20.  */
  21. Doctrine::autoload('Doctrine_Schema_Object');
  22. /**
  23.  * @package     Doctrine
  24.  * @url         http://www.phpdoctrine.com
  25.  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
  26.  * @author      Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
  27.  * @version     $Id: Database.php 1080 2007-02-10 18:17:08Z romanb $
  28.  */
  29. /**
  30.  * class Doctrine_Schema_Database
  31.  * Holds information on a database
  32.  * @package     Doctrine
  33.  * @category    Object Relational Mapping
  34.  * @link        www.phpdoctrine.com
  35.  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
  36.  * @since       1.0
  37.  * @version     $Revision: 1080 $
  38.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  39.  */
  40. {
  41.  
  42.     protected $definition = array('name'        => null,
  43.                                   'type'        => null,
  44.                                   'charset'     => null,
  45.                                   'description' => null,
  46.                                   'version'     => null,
  47.                                   'engine'      => null);
  48.  
  49.     private $childs = array();
  50.  
  51.     /**
  52.      *
  53.      * @return 
  54.      * @access public
  55.      */
  56.     public function __clone)
  57.     {
  58.  
  59.     }
  60.     /**
  61.      *
  62.      * @return 
  63.      * @access public
  64.      */
  65.     public function __toString)
  66.     {
  67.  
  68.     }
  69.     /**
  70.      *
  71.      * @return bool 
  72.      * @access public
  73.      */
  74.     public function isValid)
  75.     {
  76.  
  77.     }
  78.     /**
  79.      *
  80.      * @param Doctrine_Schema_Table table      * @return Doctrine_Schema_Table
  81.      * @access public
  82.      */
  83.     public function addTable$table null )
  84.     {
  85.         $this->childs[$table;
  86.     }
  87.  
  88.     /**
  89.      *
  90.      * @return array of Doctrine_Schema_Table
  91.      *
  92.      */
  93.     public function getTables()
  94.     {
  95.         return $this->childs;
  96.     }
  97. }