Example #1
0
 /**
  * Select single row using parameters from $arg.
  * @param array $arg
  * @return array
  */
 public function SelectSingle($arg = array())
 {
     $this->params = $arg;
     $result = $this->table->SelectSingle($this->params);
     return $result;
 }