Beispiel #1
0
 /**
  * Return columns for "select" sql
  * @return string
  */
 private function getColumns()
 {
     $ret = array();
     if ($this->configParser->hasColumns()) {
         $ret = $this->getMyColumns();
     }
     if (!$ret) {
         $ret = $this->configParser->getTableName() . ".*";
     }
     $ret .= $this->getColumnsToSelectFromJoins();
     return $ret;
 }