10 defined(
'JPATH_PLATFORM') or die;
29 public function count()
31 if (!empty($this->cursor) && $this->cursor instanceof PDOStatement)
33 return $this->cursor->rowCount();
48 protected function fetchObject()
50 if (!empty($this->cursor) && $this->cursor instanceof PDOStatement)
67 protected function freeResult()
69 if (!empty($this->cursor) && $this->cursor instanceof PDOStatement)
71 $this->cursor->closeCursor();