1
0
mirror of synced 2024-12-14 07:06:04 +03:00

listTables and listDatabases should return a 1 dimension array

This commit is contained in:
runa 2006-10-31 18:48:13 +00:00
parent 3f407e5d57
commit f4df5424f4

View File

@ -273,8 +273,7 @@ class Doctrine_DataDict_Mysql extends Doctrine_DataDict {
public function listDatabases() {
$sql = 'SHOW DATABASES';
return $this->dbh->query($sql)->fetchAll(PDO::FETCH_ASSOC);
return $this->dbh->query($sql)->fetchAll(PDO::FETCH_COLUMN);
}
/**
* lists all availible database functions
@ -358,7 +357,7 @@ class Doctrine_DataDict_Mysql extends Doctrine_DataDict {
public function listTables($database = null) {
$sql = 'SHOW TABLES';
return $this->dbh->query($sql)->fetchAll(PDO::FETCH_ASSOC);
return $this->dbh->query($sql)->fetchAll(PDO::FETCH_COLUMN);
}
/**
* lists table triggers