Implements [ArrayAccess::offsetExists], determines if row exists.
if (isset($result[10])) { // Row 10 exists }
boolean Module_Database_Result::offsetExists( )
boolean
public function offsetExists($offset)
{
return ($offset >= 0 && $offset < $this->count());
}