Example #1
0
 /**
  * Execute a PicoDb query
  *
  * @access public
  * @return array
  */
 public function executeQuery()
 {
     if ($this->query !== null) {
         return $this->query->offset($this->offset)->limit($this->limit)->orderBy($this->order, $this->direction)->findAll();
     }
     return array();
 }