Example #1
0
 /**
  * Return an array that corresponds to the fetched row transformed into an object by the call of fillObject
  *
  *
  * @param result_set $result is het resultaat dat wordt veranderd met het methode fillObject
  * @return array
  * @throws classException
  */
 protected function parseResult($result, $noassoc = false)
 {
     $output = array();
     try {
         while ($data = $result->FetchRow()) {
             $output[] = $this->fillObject($data, $noassoc);
         }
     } catch (classException $e) {
         throw $e;
     }
     return $output;
 }