/**
  * If not at start of resultset, this method will call seek(0).
  *
  * @see ResultSet::seek()
  */
 public function rewind()
 {
     if ($this->result->getCursorPosition() > 0) {
         $this->result->seek(0);
     }
 }