|
@ -76,7 +76,11 @@ class SqlResultProvider |
|
|
*/ |
|
|
*/ |
|
|
public function fetchField($field) |
|
|
public function fetchField($field) |
|
|
{ |
|
|
{ |
|
|
return current($this->result_items)->{$field}; |
|
|
|
|
|
|
|
|
$item = current($this->result_items); |
|
|
|
|
|
if ($item) { |
|
|
|
|
|
return $item->{$field}; |
|
|
|
|
|
} |
|
|
|
|
|
return false; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public function fetch() |
|
|
public function fetch() |
|
|