Refactoring Dbo

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3741 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
nate 2006-10-25 13:43:35 +00:00
parent 2046eed40d
commit 79a8944ba4

View file

@ -417,21 +417,6 @@ class DboMysqli extends DboSource {
return false;
}
}
/**
* Returns a row from given resultset as an array .
*
* @param bool $assoc Associative array only, or both?
* @return array The fetched row as an array
*/
function fetchRow($assoc = false) {
if (is_object($this->_result)) {
$this->resultSet($this->_result);
$resultRow = $this->fetchResult();
return $resultRow;
} else {
return null;
}
}
/**
* Enter description here...
*