|
@ -137,11 +137,17 @@ class ModelSelectResult extends ModelResult |
|
|
return isset($row->$field) ? $row->$field : $default; |
|
|
return isset($row->$field) ? $row->$field : $default; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
function fetchAll() |
|
|
|
|
|
|
|
|
function fetchAll($key = false) |
|
|
{ |
|
|
{ |
|
|
$array = array(); |
|
|
$array = array(); |
|
|
while ($row = mysqli_fetch_object($this->result)) { |
|
|
|
|
|
$array[] = $row; |
|
|
|
|
|
|
|
|
if ($key) { |
|
|
|
|
|
while ($row = mysqli_fetch_object($this->result)) { |
|
|
|
|
|
$array[$row->$key] = $row; |
|
|
|
|
|
} |
|
|
|
|
|
} else { |
|
|
|
|
|
while ($row = mysqli_fetch_object($this->result)) { |
|
|
|
|
|
$array[] = $row; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
return $array; |
|
|
return $array; |
|
|
} |
|
|
} |
|
@ -167,7 +173,7 @@ class ModelChangeResult extends ModelResult |
|
|
|
|
|
|
|
|
function __construct($resource) |
|
|
function __construct($resource) |
|
|
{ |
|
|
{ |
|
|
$this->affected = mysql_affected_rows($resource); |
|
|
|
|
|
|
|
|
$this->affected = mysqli_affected_rows($resource); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
function count() |
|
|
function count() |
|
|