/**
  * fetch the first record into a DAO record
  */
 function &fetchFirstRecord($query, $recordName)
 {
     $rs =& $this->connector->doQuery($query);
     $result =& $rs->fetchRecord($recordName);
     $rs->free();
     return $result;
 }