Implements [ArrayAccess::offsetGet], gets a given row.
$row = $result[10];
mixed Module_Database_Result::offsetGet( )
mixed
public function offsetGet($offset) { if ( $this->seek($offset) ) return null; return $this->current(); }