1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

found a few bugs when i wanted to use Doctrine_Import_Mysql::listTableConstraints()

fixed code so those problems wont occure. However the method still not works as intended, 
more information see mail at doctrine-dev mailinglist.
Fixed same Problems in other drivers aswell.
This commit is contained in:
ppetermann 2007-10-26 14:56:03 +00:00
parent d631c789f3
commit de220fa43f
3 changed files with 647 additions and 647 deletions

View file

@ -1,199 +1,199 @@
<?php <?php
/* /*
* $Id$ * $Id$
* *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* *
* This software consists of voluntary contributions made by many individuals * This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
Doctrine::autoload('Doctrine_Import'); Doctrine::autoload('Doctrine_Import');
/** /**
* @package Doctrine * @package Doctrine
* @subpackage Import * @subpackage Import
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi> * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @author Frank M. Kromann <frank@kromann.info> (PEAR MDB2 Mssql driver) * @author Frank M. Kromann <frank@kromann.info> (PEAR MDB2 Mssql driver)
* @author David Coallier <davidc@php.net> (PEAR MDB2 Mssql driver) * @author David Coallier <davidc@php.net> (PEAR MDB2 Mssql driver)
* @version $Revision$ * @version $Revision$
* @link www.phpdoctrine.com * @link www.phpdoctrine.com
* @since 1.0 * @since 1.0
*/ */
class Doctrine_Import_Mssql extends Doctrine_Import class Doctrine_Import_Mssql extends Doctrine_Import
{ {
/** /**
* lists all database sequences * lists all database sequences
* *
* @param string|null $database * @param string|null $database
* @return array * @return array
*/ */
public function listSequences($database = null) public function listSequences($database = null)
{ {
$query = "SELECT name FROM sysobjects WHERE xtype = 'U'"; $query = "SELECT name FROM sysobjects WHERE xtype = 'U'";
$tableNames = $this->conn->fetchColumn($query); $tableNames = $this->conn->fetchColumn($query);
return array_map(array($this->conn->formatter, 'fixSequenceName'), $tableNames); return array_map(array($this->conn->formatter, 'fixSequenceName'), $tableNames);
} }
/** /**
* lists table constraints * lists table constraints
* *
* @param string $table database table name * @param string $table database table name
* @return array * @return array
*/ */
public function listTableColumns($table) public function listTableColumns($table)
{ {
$sql = 'EXEC sp_columns @table_name = ' . $this->conn->quoteIdentifier($table, true); $sql = 'EXEC sp_columns @table_name = ' . $this->conn->quoteIdentifier($table, true);
$result = $this->conn->fetchAssoc($sql); $result = $this->conn->fetchAssoc($sql);
$columns = array(); $columns = array();
foreach ($result as $key => $val) { foreach ($result as $key => $val) {
$val = array_change_key_case($val, CASE_LOWER); $val = array_change_key_case($val, CASE_LOWER);
if (strstr($val['type_name'], ' ')) { if (strstr($val['type_name'], ' ')) {
list($type, $identity) = explode(' ', $val['type_name']); list($type, $identity) = explode(' ', $val['type_name']);
} else { } else {
$type = $val['type_name']; $type = $val['type_name'];
$identity = ''; $identity = '';
} }
if ($type == 'varchar') { if ($type == 'varchar') {
$type .= '(' . $val['length'] . ')'; $type .= '(' . $val['length'] . ')';
} }
$decl = $this->conn->dataDict->getPortableDeclaration($val); $decl = $this->conn->dataDict->getPortableDeclaration($val);
$description = array( $description = array(
'name' => $val['column_name'], 'name' => $val['column_name'],
'ntype' => $type, 'ntype' => $type,
'type' => $decl['type'][0], 'type' => $decl['type'][0],
'alltypes' => $decl['type'], 'alltypes' => $decl['type'],
'length' => $decl['length'], 'length' => $decl['length'],
'fixed' => $decl['fixed'], 'fixed' => $decl['fixed'],
'unsigned' => $decl['unsigned'], 'unsigned' => $decl['unsigned'],
'notnull' => (bool) ($val['is_nullable'] === 'NO'), 'notnull' => (bool) ($val['is_nullable'] === 'NO'),
'default' => $val['column_def'], 'default' => $val['column_def'],
'primary' => (strtolower($identity) == 'identity'), 'primary' => (strtolower($identity) == 'identity'),
); );
$columns[$val['column_name']] = $description; $columns[$val['column_name']] = $description;
} }
return $columns; return $columns;
} }
/** /**
* lists table constraints * lists table constraints
* *
* @param string $table database table name * @param string $table database table name
* @return array * @return array
*/ */
public function listTableIndexes($table) public function listTableIndexes($table)
{ {
} }
/** /**
* lists tables * lists tables
* *
* @param string|null $database * @param string|null $database
* @return array * @return array
*/ */
public function listTables($database = null) public function listTables($database = null)
{ {
$sql = "SELECT name FROM sysobjects WHERE type = 'U' ORDER BY name"; $sql = "SELECT name FROM sysobjects WHERE type = 'U' ORDER BY name";
return $this->conn->fetchColumn($sql); return $this->conn->fetchColumn($sql);
} }
/** /**
* lists all triggers * lists all triggers
* *
* @return array * @return array
*/ */
public function listTriggers($database = null) public function listTriggers($database = null)
{ {
$query = "SELECT name FROM sysobjects WHERE xtype = 'TR'"; $query = "SELECT name FROM sysobjects WHERE xtype = 'TR'";
$result = $this->conn->fetchColumn($query); $result = $this->conn->fetchColumn($query);
return $result; return $result;
} }
/** /**
* lists table triggers * lists table triggers
* *
* @param string $table database table name * @param string $table database table name
* @return array * @return array
*/ */
public function listTableTriggers($table) public function listTableTriggers($table)
{ {
$table = $this->conn->quote($table, 'text'); $table = $this->conn->quote($table, 'text');
$query = "SELECT name FROM sysobjects WHERE xtype = 'TR' AND object_name(parent_obj) = " . $table; $query = "SELECT name FROM sysobjects WHERE xtype = 'TR' AND object_name(parent_obj) = " . $table;
$result = $this->conn->fetchColumn($query); $result = $this->conn->fetchColumn($query);
return $result; return $result;
} }
/** /**
* lists table views * lists table views
* *
* @param string $table database table name * @param string $table database table name
* @return array * @return array
*/ */
public function listTableViews($table) public function listTableViews($table)
{ {
$keyName = 'INDEX_NAME'; $keyName = 'INDEX_NAME';
$pkName = 'PK_NAME'; $pkName = 'PK_NAME';
if ($this->conn->options['portability'] & Doctrine::PORTABILITY_FIX_CASE) { if ($this->conn->getAttribute(Doctrine::ATTR_PORTABILITY) & Doctrine::PORTABILITY_FIX_CASE) {
if ($this->conn->options['field_case'] == CASE_LOWER) { if ($this->conn->getAttribute(Doctrine::ATTR_FIELD_CASE) == CASE_LOWER) {
$keyName = strtolower($keyName); $keyName = strtolower($keyName);
$pkName = strtolower($pkName); $pkName = strtolower($pkName);
} else { } else {
$keyName = strtoupper($keyName); $keyName = strtoupper($keyName);
$pkName = strtoupper($pkName); $pkName = strtoupper($pkName);
} }
} }
$table = $this->conn->quote($table, 'text'); $table = $this->conn->quote($table, 'text');
$query = 'EXEC sp_statistics @table_name = ' . $table; $query = 'EXEC sp_statistics @table_name = ' . $table;
$indexes = $this->conn->fetchColumn($query, $keyName); $indexes = $this->conn->fetchColumn($query, $keyName);
$query = 'EXEC sp_pkeys @table_name = ' . $table; $query = 'EXEC sp_pkeys @table_name = ' . $table;
$pkAll = $this->conn->fetchColumn($query, $pkName); $pkAll = $this->conn->fetchColumn($query, $pkName);
$result = array(); $result = array();
foreach ($indexes as $index) { foreach ($indexes as $index) {
if ( ! in_array($index, $pkAll) && $index != null) { if ( ! in_array($index, $pkAll) && $index != null) {
$result[] = $this->conn->formatter->fixIndexName($index); $result[] = $this->conn->formatter->fixIndexName($index);
} }
} }
return $result; return $result;
} }
/** /**
* lists database views * lists database views
* *
* @param string|null $database * @param string|null $database
* @return array * @return array
*/ */
public function listViews($database = null) public function listViews($database = null)
{ {
$query = "SELECT name FROM sysobjects WHERE xtype = 'V'"; $query = "SELECT name FROM sysobjects WHERE xtype = 'V'";
return $this->conn->fetchColumn($query); return $this->conn->fetchColumn($query);
} }
} }

View file

@ -1,211 +1,211 @@
<?php <?php
/* /*
* $Id$ * $Id$
* *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* *
* This software consists of voluntary contributions made by many individuals * This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
Doctrine::autoload('Doctrine_Import'); Doctrine::autoload('Doctrine_Import');
/** /**
* @package Doctrine * @package Doctrine
* @subpackage Import * @subpackage Import
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi> * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Revision$ * @version $Revision$
* @link www.phpdoctrine.com * @link www.phpdoctrine.com
* @since 1.0 * @since 1.0
*/ */
class Doctrine_Import_Mysql extends Doctrine_Import class Doctrine_Import_Mysql extends Doctrine_Import
{ {
protected $sql = array( protected $sql = array(
'showDatabases' => 'SHOW DATABASES', 'showDatabases' => 'SHOW DATABASES',
'listTableFields' => 'DESCRIBE %s', 'listTableFields' => 'DESCRIBE %s',
'listSequences' => 'SHOW TABLES', 'listSequences' => 'SHOW TABLES',
'listTables' => 'SHOW TABLES', 'listTables' => 'SHOW TABLES',
'listUsers' => 'SELECT DISTINCT USER FROM USER', 'listUsers' => 'SELECT DISTINCT USER FROM USER',
'listViews' => "SHOW FULL TABLES %sWHERE Table_type = 'VIEW'", 'listViews' => "SHOW FULL TABLES %s WHERE Table_type = 'VIEW'",
); );
/** /**
* lists all database sequences * lists all database sequences
* *
* @param string|null $database * @param string|null $database
* @return array * @return array
*/ */
public function listSequences($database = null) public function listSequences($database = null)
{ {
$query = 'SHOW TABLES'; $query = 'SHOW TABLES';
if ( ! is_null($database)) { if ( ! is_null($database)) {
$query .= ' FROM ' . $database; $query .= ' FROM ' . $database;
} }
$tableNames = $this->conn->fetchColumn($query); $tableNames = $this->conn->fetchColumn($query);
return array_map(array($this->conn, 'fixSequenceName'), $tableNames); return array_map(array($this->conn->formatter, 'fixSequenceName'), $tableNames);
} }
/** /**
* lists table constraints * lists table constraints
* *
* @param string $table database table name * @param string $table database table name
* @return array * @return array
*/ */
public function listTableConstraints($table) public function listTableConstraints($table)
{ {
$keyName = 'Key_name'; $keyName = 'Key_name';
$nonUnique = 'Non_unique'; $nonUnique = 'Non_unique';
if ($this->conn->getAttribute(Doctrine::ATTR_PORTABILITY) & Doctrine::PORTABILITY_FIX_CASE) { if ($this->conn->getAttribute(Doctrine::ATTR_PORTABILITY) & Doctrine::PORTABILITY_FIX_CASE) {
if ($this->conn->options['field_case'] == CASE_LOWER) { if ($this->conn->getAttribute(Doctrine::ATTR_FIELD_CASE) == CASE_LOWER) {
$keyName = strtolower($keyName); $keyName = strtolower($keyName);
$nonUnique = strtolower($nonUnique); $nonUnique = strtolower($nonUnique);
} else { } else {
$keyName = strtoupper($keyName); $keyName = strtoupper($keyName);
$nonUnique = strtoupper($nonUnique); $nonUnique = strtoupper($nonUnique);
} }
} }
$table = $this->conn->quoteIdentifier($table, true); $table = $this->conn->quoteIdentifier($table, true);
$query = 'SHOW INDEX FROM ' . $table; $query = 'SHOW INDEX FROM ' . $table;
$indexes = $this->conn->fetchAssoc($query); $indexes = $this->conn->fetchAssoc($query);
$result = array(); $result = array();
foreach ($indexes as $indexData) { foreach ($indexes as $indexData) {
if ( ! $indexData[$nonUnique]) { if ( ! $indexData[$nonUnique]) {
if ($indexData[$keyName] !== 'PRIMARY') { if ($indexData[$keyName] !== 'PRIMARY') {
$index = $this->conn->fixIndexName($indexData[$keyName]); $index = $this->conn->formatter->fixIndexName($indexData[$keyName]);
} else { } else {
$index = 'PRIMARY'; $index = 'PRIMARY';
} }
if ( ! empty($index)) { if ( ! empty($index)) {
$result[] = $index; $result[] = $index;
} }
} }
} }
return $result; return $result;
} }
/** /**
* lists table foreign keys * lists table foreign keys
* *
* @param string $table database table name * @param string $table database table name
* @return array * @return array
*/ */
public function listTableForeignKeys($table) public function listTableForeignKeys($table)
{ {
$sql = 'SHOW CREATE TABLE ' . $this->conn->quoteIdentifier($table, true); $sql = 'SHOW CREATE TABLE ' . $this->conn->quoteIdentifier($table, true);
} }
/** /**
* lists table constraints * lists table constraints
* *
* @param string $table database table name * @param string $table database table name
* @return array * @return array
*/ */
public function listTableColumns($table) public function listTableColumns($table)
{ {
$sql = 'DESCRIBE ' . $this->conn->quoteIdentifier($table, true); $sql = 'DESCRIBE ' . $this->conn->quoteIdentifier($table, true);
$result = $this->conn->fetchAssoc($sql); $result = $this->conn->fetchAssoc($sql);
$description = array(); $description = array();
foreach ($result as $key => $val) { foreach ($result as $key => $val) {
$val = array_change_key_case($val, CASE_LOWER); $val = array_change_key_case($val, CASE_LOWER);
$decl = $this->conn->dataDict->getPortableDeclaration($val); $decl = $this->conn->dataDict->getPortableDeclaration($val);
$values = isset($decl['values']) ? $decl['values'] : array(); $values = isset($decl['values']) ? $decl['values'] : array();
$description = array( $description = array(
'name' => $val['field'], 'name' => $val['field'],
'type' => $decl['type'][0], 'type' => $decl['type'][0],
'alltypes' => $decl['type'], 'alltypes' => $decl['type'],
'ntype' => $val['type'], 'ntype' => $val['type'],
'length' => $decl['length'], 'length' => $decl['length'],
'fixed' => $decl['fixed'], 'fixed' => $decl['fixed'],
'unsigned' => $decl['unsigned'], 'unsigned' => $decl['unsigned'],
'values' => $values, 'values' => $values,
'primary' => (strtolower($val['key']) == 'pri'), 'primary' => (strtolower($val['key']) == 'pri'),
'default' => $val['default'], 'default' => $val['default'],
'notnull' => (bool) ($val['null'] != 'YES'), 'notnull' => (bool) ($val['null'] != 'YES'),
'autoinc' => (bool) (strpos($val['extra'], 'auto_increment') !== false), 'autoinc' => (bool) (strpos($val['extra'], 'auto_increment') !== false),
); );
$columns[$val['field']] = $description; $columns[$val['field']] = $description;
} }
return $columns; return $columns;
} }
/** /**
* lists table constraints * lists table constraints
* *
* @param string $table database table name * @param string $table database table name
* @return array * @return array
*/ */
public function listTableIndexes($table) public function listTableIndexes($table)
{ {
$keyName = 'Key_name'; $keyName = 'Key_name';
$nonUnique = 'Non_unique'; $nonUnique = 'Non_unique';
if ($this->conn->options['portability'] & Doctrine::PORTABILITY_FIX_CASE) { if ($this->conn->getAttribute(Doctrine::ATTR_PORTABILITY) & Doctrine::PORTABILITY_FIX_CASE) {
if ($this->conn->options['field_case'] == CASE_LOWER) { if ($this->conn->getAttribute(Doctrine::ATTR_FIELD_CASE) == CASE_LOWER) {
$keyName = strtolower($keyName); $keyName = strtolower($keyName);
$nonUnique = strtolower($nonUnique); $nonUnique = strtolower($nonUnique);
} else { } else {
$keyName = strtoupper($keyName); $keyName = strtoupper($keyName);
$nonUnique = strtoupper($nonUnique); $nonUnique = strtoupper($nonUnique);
} }
} }
$table = $this->conn->quoteIdentifier($table, true); $table = $this->conn->quoteIdentifier($table, true);
$query = 'SHOW INDEX FROM ' . $table; $query = 'SHOW INDEX FROM ' . $table;
$indexes = $this->conn->fetchAssoc($query); $indexes = $this->conn->fetchAssoc($query);
$result = array(); $result = array();
foreach ($indexes as $indexData) { foreach ($indexes as $indexData) {
if ($indexData[$nonUnique] && ($index = $this->conn->fixIndexName($indexData[$keyName]))) { if ($indexData[$nonUnique] && ($index = $this->conn->formatter->fixIndexName($indexData[$keyName]))) {
$result[] = $index; $result[] = $index;
} }
} }
return $result; return $result;
} }
/** /**
* lists tables * lists tables
* *
* @param string|null $database * @param string|null $database
* @return array * @return array
*/ */
public function listTables($database = null) public function listTables($database = null)
{ {
return $this->conn->fetchColumn($this->sql['listTables']); return $this->conn->fetchColumn($this->sql['listTables']);
} }
/** /**
* lists database views * lists database views
* *
* @param string|null $database * @param string|null $database
* @return array * @return array
*/ */
public function listViews($database = null) public function listViews($database = null)
{ {
if ( ! is_null($database)) { if ( ! is_null($database)) {
$query = sprintf($this->sql['listViews'], ' FROM ' . $database); $query = sprintf($this->sql['listViews'], ' FROM ' . $database);
} }
return $this->conn->fetchColumn($query); return $this->conn->fetchColumn($query);
} }
} }

View file

@ -1,240 +1,240 @@
<?php <?php
/* /*
* $Id$ * $Id$
* *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* *
* This software consists of voluntary contributions made by many individuals * This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see * and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>. * <http://www.phpdoctrine.com>.
*/ */
Doctrine::autoload('Doctrine_Import'); Doctrine::autoload('Doctrine_Import');
/** /**
* @package Doctrine * @package Doctrine
* @subpackage Import * @subpackage Import
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @author Konsta Vesterinen <kvesteri@cc.hut.fi> * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
* @version $Revision$ * @version $Revision$
* @link www.phpdoctrine.com * @link www.phpdoctrine.com
* @since 1.0 * @since 1.0
*/ */
class Doctrine_Import_Sqlite extends Doctrine_Import class Doctrine_Import_Sqlite extends Doctrine_Import
{ {
/** /**
* lists all databases * lists all databases
* *
* @return array * @return array
*/ */
public function listDatabases() public function listDatabases()
{ {
} }
/** /**
* lists all availible database functions * lists all availible database functions
* *
* @return array * @return array
*/ */
public function listFunctions() public function listFunctions()
{ {
} }
/** /**
* lists all database triggers * lists all database triggers
* *
* @param string|null $database * @param string|null $database
* @return array * @return array
*/ */
public function listTriggers($database = null) public function listTriggers($database = null)
{ {
} }
/** /**
* lists all database sequences * lists all database sequences
* *
* @param string|null $database * @param string|null $database
* @return array * @return array
*/ */
public function listSequences($database = null) public function listSequences($database = null)
{ {
$query = "SELECT name FROM sqlite_master WHERE type='table' AND sql NOT NULL ORDER BY name"; $query = "SELECT name FROM sqlite_master WHERE type='table' AND sql NOT NULL ORDER BY name";
$tableNames = $this->conn->fetchColumn($query); $tableNames = $this->conn->fetchColumn($query);
$result = array(); $result = array();
foreach ($tableNames as $tableName) { foreach ($tableNames as $tableName) {
if ($sqn = $this->conn->fixSequenceName($tableName, true)) { if ($sqn = $this->conn->fixSequenceName($tableName, true)) {
$result[] = $sqn; $result[] = $sqn;
} }
} }
if ($this->conn->getAttribute(Doctrine::ATTR_PORTABILITY) & Doctrine::PORTABILITY_FIX_CASE) { if ($this->conn->getAttribute(Doctrine::ATTR_PORTABILITY) & Doctrine::PORTABILITY_FIX_CASE) {
$result = array_map(($this->conn->getAttribute(Doctrine::ATTR_FIELD_CASE) == CASE_LOWER ? 'strtolower' : 'strtoupper'), $result); $result = array_map(($this->conn->getAttribute(Doctrine::ATTR_FIELD_CASE) == CASE_LOWER ? 'strtolower' : 'strtoupper'), $result);
} }
return $result; return $result;
} }
/** /**
* lists table constraints * lists table constraints
* *
* @param string $table database table name * @param string $table database table name
* @return array * @return array
*/ */
public function listTableConstraints($table) public function listTableConstraints($table)
{ {
$table = $this->conn->quote($table, 'text'); $table = $this->conn->quote($table, 'text');
$query = "SELECT sql FROM sqlite_master WHERE type='index' AND "; $query = "SELECT sql FROM sqlite_master WHERE type='index' AND ";
if ($this->conn->getAttribute(Doctrine::ATTR_PORTABILITY) & Doctrine::PORTABILITY_FIX_CASE) { if ($this->conn->getAttribute(Doctrine::ATTR_PORTABILITY) & Doctrine::PORTABILITY_FIX_CASE) {
$query .= 'LOWER(tbl_name) = ' . strtolower($table); $query .= 'LOWER(tbl_name) = ' . strtolower($table);
} else { } else {
$query .= 'tbl_name = ' . $table; $query .= 'tbl_name = ' . $table;
} }
$query .= ' AND sql NOT NULL ORDER BY name'; $query .= ' AND sql NOT NULL ORDER BY name';
$indexes = $this->conn->fetchColumn($query); $indexes = $this->conn->fetchColumn($query);
$result = array(); $result = array();
foreach ($indexes as $sql) { foreach ($indexes as $sql) {
if (preg_match("/^create unique index ([^ ]+) on /i", $sql, $tmp)) { if (preg_match("/^create unique index ([^ ]+) on /i", $sql, $tmp)) {
$index = $this->conn->fixIndexName($tmp[1]); $index = $this->conn->formatter->fixIndexName($tmp[1]);
if ( ! empty($index)) { if ( ! empty($index)) {
$result[$index] = true; $result[$index] = true;
} }
} }
} }
if ($this->conn->getAttribute(Doctrine::ATTR_PORTABILITY) & Doctrine::PORTABILITY_FIX_CASE) { if ($this->conn->getAttribute(Doctrine::ATTR_PORTABILITY) & Doctrine::PORTABILITY_FIX_CASE) {
$result = array_change_key_case($result, $this->conn->getAttribute(Doctrine::ATTR_FIELD_CASE)); $result = array_change_key_case($result, $this->conn->getAttribute(Doctrine::ATTR_FIELD_CASE));
} }
return array_keys($result); return array_keys($result);
} }
/** /**
* lists table constraints * lists table constraints
* *
* @param string $table database table name * @param string $table database table name
* @return array * @return array
*/ */
public function listTableColumns($table) public function listTableColumns($table)
{ {
$sql = 'PRAGMA table_info(' . $table . ')'; $sql = 'PRAGMA table_info(' . $table . ')';
$result = $this->conn->fetchAll($sql); $result = $this->conn->fetchAll($sql);
$description = array(); $description = array();
$columns = array(); $columns = array();
foreach ($result as $key => $val) { foreach ($result as $key => $val) {
$val = array_change_key_case($val, CASE_LOWER); $val = array_change_key_case($val, CASE_LOWER);
$decl = $this->conn->dataDict->getPortableDeclaration($val); $decl = $this->conn->dataDict->getPortableDeclaration($val);
$description = array( $description = array(
'name' => $val['name'], 'name' => $val['name'],
'ntype' => $val['type'], 'ntype' => $val['type'],
'type' => $decl['type'][0], 'type' => $decl['type'][0],
'alltypes' => $decl['type'], 'alltypes' => $decl['type'],
'notnull' => (bool) $val['notnull'], 'notnull' => (bool) $val['notnull'],
'default' => $val['dflt_value'], 'default' => $val['dflt_value'],
'primary' => (bool) $val['pk'], 'primary' => (bool) $val['pk'],
'length' => null, 'length' => null,
'scale' => null, 'scale' => null,
'precision' => null, 'precision' => null,
'unsigned' => null, 'unsigned' => null,
); );
$columns[$val['name']] = $description; $columns[$val['name']] = $description;
} }
return $columns; return $columns;
} }
/** /**
* lists table constraints * lists table constraints
* *
* @param string $table database table name * @param string $table database table name
* @return array * @return array
*/ */
public function listTableIndexes($table) public function listTableIndexes($table)
{ {
$sql = 'PRAGMA index_list(' . $table . ')'; $sql = 'PRAGMA index_list(' . $table . ')';
return $this->conn->fetchColumn($sql); return $this->conn->fetchColumn($sql);
} }
/** /**
* lists tables * lists tables
* *
* @param string|null $database * @param string|null $database
* @return array * @return array
*/ */
public function listTables($database = null) public function listTables($database = null)
{ {
$sql = "SELECT name FROM sqlite_master WHERE type = 'table' " $sql = "SELECT name FROM sqlite_master WHERE type = 'table' "
. "UNION ALL SELECT name FROM sqlite_temp_master " . "UNION ALL SELECT name FROM sqlite_temp_master "
. "WHERE type = 'table' ORDER BY name"; . "WHERE type = 'table' ORDER BY name";
return $this->conn->fetchColumn($sql); return $this->conn->fetchColumn($sql);
} }
/** /**
* lists table triggers * lists table triggers
* *
* @param string $table database table name * @param string $table database table name
* @return array * @return array
*/ */
public function listTableTriggers($table) public function listTableTriggers($table)
{ {
} }
/** /**
* lists table views * lists table views
* *
* @param string $table database table name * @param string $table database table name
* @return array * @return array
*/ */
public function listTableViews($table) public function listTableViews($table)
{ {
$query = "SELECT name, sql FROM sqlite_master WHERE type='view' AND sql NOT NULL"; $query = "SELECT name, sql FROM sqlite_master WHERE type='view' AND sql NOT NULL";
$views = $db->fetchAll($query); $views = $db->fetchAll($query);
$result = array(); $result = array();
foreach ($views as $row) { foreach ($views as $row) {
if (preg_match("/^create view .* \bfrom\b\s+\b{$table}\b /i", $row['sql'])) { if (preg_match("/^create view .* \bfrom\b\s+\b{$table}\b /i", $row['sql'])) {
if ( ! empty($row['name'])) { if ( ! empty($row['name'])) {
$result[$row['name']] = true; $result[$row['name']] = true;
} }
} }
} }
return $result; return $result;
} }
/** /**
* lists database users * lists database users
* *
* @return array * @return array
*/ */
public function listUsers() public function listUsers()
{ {
} }
/** /**
* lists database views * lists database views
* *
* @param string|null $database * @param string|null $database
* @return array * @return array
*/ */
public function listViews($database = null) public function listViews($database = null)
{ {
$query = "SELECT name FROM sqlite_master WHERE type='view' AND sql NOT NULL"; $query = "SELECT name FROM sqlite_master WHERE type='view' AND sql NOT NULL";
return $this->conn->fetchColumn($query); return $this->conn->fetchColumn($query);
} }
} }