SqlResultProvider fetchField - check for empty result

This commit is contained in:
2014-07-28 15:38:11 +04:00
parent b7fcfcf476
commit d3f367d990

View File

@ -101,7 +101,12 @@ class SqlResultProvider implements iSqlResultItems
*/
public function fetchField($field)
{
return $this->result->fetchField($field);
if ($this->result->numRows())
{
return $this->result->fetchField($field);
} else {
return false;
}
}
/**