filter->getReportFilter() ? : ['params' => [], 'sql' => false]; $this->params = array_merge([], $filter['params']); if ($this->groupby == false) { $this->sql = " SELECT log.id, log.user, log.usrid, log.date as ddate, log.societe, log.pays, log.activite, log.fonction, log.site, log.sit_session, log.appli, log.ip FROM log FORCE INDEX (date_site) WHERE (" . $filter['sql'] .") AND !ISNULL(log.usrid)"; // no_file_put_contents("/tmp/report.txt", sprintf("%s (%s)\n%s\n\n", __FILE__, __LINE__, $this->sql), FILE_APPEND); $stmt = $this->connbas->prepare($this->sql); $stmt->execute($this->params); $this->total_row = $stmt->rowCount(); $stmt->closeCursor(); $this->sql .= $this->filter->getOrderFilter() ? : ''; if ($this->enable_limit) { $this->sql .= $this->filter->getLimitFilter() ? : ''; } } else { $this->sql = " SELECT " . $this->groupby . ", SUM(1) as nb FROM ( SELECT DISTINCT(log.id), TRIM(" . $this->getTransQuery($this->groupby) . ") AS " . $this->groupby . " FROM log FORCE INDEX (date_site) WHERE (" . $filter['sql'] .") ) AS tt GROUP BY " . $this->groupby. " ORDER BY nb DESC"; // no_file_put_contents("/tmp/report.txt", sprintf("%s (%s)\n%s\n\n", __FILE__, __LINE__, $this->sql), FILE_APPEND); $stmt = $this->connbas->prepare($this->sql); $stmt->execute($this->params); $this->total_row = $stmt->rowCount(); $stmt->closeCursor(); } return $this; } public function sqlDistinctValByField($field) { $filter = $this->filter->getReportFilter() ? : ['params' => [], 'sql' => false]; $this->params = array_merge([], $filter['params']); $this->sql = ' SELECT DISTINCT(val) FROM ( SELECT DISTINCT(log.id), ' . $this->getTransQuery($field) . ' AS val FROM log FORCE INDEX (date_site) WHERE (' . $filter['sql'] . ') ) AS tt ORDER BY val ASC'; return ['sql' => $this->sql, 'params' => $this->params]; } }