public function getRecord($id)
 {
     LogMaster::log("Retreiving data for record: " . $id);
     $source = new DataRequestConfig($this->request);
     $source->set_filter($this->config->id["name"], $id, "=");
     $res = $this->sql->select($source);
     $temp = $this->data_separator;
     $this->data_separator = "";
     $output = $this->render_set($res);
     $this->data_separato = $temp;
     return $output;
 }