Source for file Import.php
Documentation is available at Import.php
* $Id: Import.php 2255 2007-08-16 22:42:35Z Jonathan.Wage $
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
* Main responsible of performing import operation. Delegates database schema
* reading to a reader object and passes the result to a builder object which
* builds a Doctrine data model.
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @version $Revision: 2255 $
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
protected $sql =
array();
if ( ! isset
($this->sql['listDatabases'])) {
return $this->conn->fetchColumn($this->sql['listDatabases']);
* lists all availible database functions
if ( ! isset
($this->sql['listFunctions'])) {
return $this->conn->fetchColumn($this->sql['listFunctions']);
* lists all database triggers
* @param string|null$database
* lists all database sequences
* @param string|null$database
if ( ! isset
($this->sql['listSequences'])) {
return $this->conn->fetchColumn($this->sql['listSequences']);
* lists table constraints
* @param string $table database table name
* lists table constraints
* @param string $table database table name
* lists table constraints
* @param string $table database table name
* @param string|null$database
* @param string $table database table name
* @param string $table database table name
if ( ! isset
($this->sql['listUsers'])) {
return $this->conn->fetchColumn($this->sql['listUsers']);
* @param string|null$database
if ( ! isset
($this->sql['listViews'])) {
return $this->conn->fetchColumn($this->sql['listViews']);
* method for importing existing schema to Doctrine_Record classes
* @param string $directory
* @param array $databases
* @return array the names of the imported classes
public function importSchema($directory, array $databases =
array())
$builder->setTargetPath($directory);
$builder->buildRecord(array('tableName' =>
$table,