From 79a8944ba4b2efb581f88cfaf4cf09d50e339ec5 Mon Sep 17 00:00:00 2001 From: nate Date: Wed, 25 Oct 2006 13:43:35 +0000 Subject: [PATCH] Refactoring Dbo git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3741 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/libs/model/datasources/dbo/dbo_mysqli.php | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/cake/libs/model/datasources/dbo/dbo_mysqli.php b/cake/libs/model/datasources/dbo/dbo_mysqli.php index 7bf03e6c3..957c349d6 100644 --- a/cake/libs/model/datasources/dbo/dbo_mysqli.php +++ b/cake/libs/model/datasources/dbo/dbo_mysqli.php @@ -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... *