/**
  * Executes a query and get its result set.
  */
 function &_getResultSetFromQuery($query, $limitOffset = null, $limitCount = null)
 {
     if ($limitOffset !== null && $limitCount !== null) {
         $res =& $this->connector->doLimitQuery($query, $limitOffset, $limitCount);
     } else {
         $res =& $this->connector->doQuery($query);
     }
     return $res;
 }