- Patch #742042 by kkaefer:DBTNG: ->fetchAllAssoc() doesn't respect fetch mode set during ->execute().

merge-requests/26/head
Dries Buytaert 2010-04-30 13:47:46 +00:00
parent 5f98fb812b
commit 9332e835da
2 changed files with 18 additions and 14 deletions

View File

@ -1916,12 +1916,13 @@ interface DatabaseStatementInterface extends Traversable {
* @param $fetch
* The fetchmode to use. If set to PDO::FETCH_ASSOC, PDO::FETCH_NUM, or
* PDO::FETCH_BOTH the returned value with be an array of arrays. For any
* other value it will be an array of objects.
* other value it will be an array of objects. By default, the fetch mode
* set for the query will be used.
*
* @return
* An associative array.
*/
public function fetchAllAssoc($key, $fetch = PDO::FETCH_OBJ);
public function fetchAllAssoc($key, $fetch = NULL);
}
/**
@ -1987,19 +1988,22 @@ class DatabaseStatementBase extends PDOStatement implements DatabaseStatementInt
return $this->fetchAll(PDO::FETCH_COLUMN, $index);
}
public function fetchAllAssoc($key, $fetch = PDO::FETCH_OBJ) {
public function fetchAllAssoc($key, $fetch = NULL) {
$return = array();
$this->setFetchMode($fetch);
if (in_array($fetch, array(PDO::FETCH_ASSOC, PDO::FETCH_NUM, PDO::FETCH_BOTH))) {
foreach ($this as $record) {
$return[$record[$key]] = $record;
}
if (isset($fetch)) {
if (is_string($fetch)) {
$this->setFetchMode(PDO::FETCH_CLASS, $fetch);
}
else {
$this->setFetchMode($fetch);
}
}
foreach ($this as $record) {
$return[$record->$key] = $record;
}
$record_key = is_object($record) ? $record->$key : $record[$key];
$return[$record_key] = $record;
}
return $return;
}
@ -2080,7 +2084,7 @@ class DatabaseStatementEmpty implements Iterator, DatabaseStatementInterface {
return array();
}
public function fetchAllAssoc($key, $fetch = PDO::FETCH_OBJ) {
public function fetchAllAssoc($key, $fetch = NULL) {
return array();
}

View File

@ -475,8 +475,8 @@ class DatabaseStatementPrefetch implements Iterator, DatabaseStatementInterface
return $result;
}
public function fetchAllAssoc($key, $fetch_style = PDO::FETCH_OBJ) {
$this->fetchStyle = $fetch_style;
public function fetchAllAssoc($key, $fetch_style = NULL) {
$this->fetchStyle = isset($fetch_style) ? $fetch_style : $this->defaultFetchStyle;
$this->fetchOptions = $this->defaultFetchOptions;
$result = array();