コード例 #1
0
 function GetOrderBy()
 {
     $sSort = $this->getSessionOrderBy();
     return ew_BuildSelectSql("", "", "", "", $this->getSqlOrderBy(), "", $sSort);
 }
コード例 #2
0
 function GetOrderBy()
 {
     $sSort = $this->UseVirtualFields() ? $this->getSessionOrderByList() : $this->getSessionOrderBy();
     return ew_BuildSelectSql("", "", "", "", $this->getSqlOrderBy(), "", $sSort);
 }
コード例 #3
0
 function SelectSQL()
 {
     $sFilter = $this->getSessionWhere();
     if ($this->CurrentFilter != "") {
         if ($sFilter != "") {
             $sFilter = "({$sFilter}) AND ";
         }
         $sFilter .= "(" . $this->CurrentFilter . ")";
     }
     $sSort = $this->getSessionOrderBy();
     return ew_BuildSelectSql($this->SqlSelect(), $this->SqlWhere(), $this->SqlGroupBy(), $this->SqlHaving(), $this->SqlOrderBy(), $sFilter, $sSort);
 }
コード例 #4
0
 function DetailSQL()
 {
     $sFilter = $this->CurrentFilter;
     $sSort = "";
     return ew_BuildSelectSql($this->SqlDetailSelect(), $this->SqlDetailWhere(), $this->SqlDetailGroupBy(), $this->SqlDetailHaving(), $this->SqlDetailOrderBy(), $sFilter, $sSort);
 }
コード例 #5
0
ファイル: t_paysinfo.php プロジェクト: Razinsky/echaude-com
 function SelectSQL()
 {
     $sFilter = $this->getSessionWhere();
     ew_AddFilter($sFilter, $this->CurrentFilter);
     $sFilter = $this->ApplyUserIDFilters($sFilter);
     $sSort = $this->getSessionOrderBy();
     return ew_BuildSelectSql($this->SqlSelect(), $this->SqlWhere(), $this->SqlGroupBy(), $this->SqlHaving(), $this->SqlOrderBy(), $sFilter, $sSort);
 }