Subversion Repositories oidplus

Rev

Rev 433 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 433 Rev 502
Line 100... Line 100...
100
        }
100
        }
101
 
101
 
102
        public function isNullFunction($expr1, $expr2): string {
102
        public function isNullFunction($expr1, $expr2): string {
103
                return "ifnull($expr1, $expr2)";
103
                return "ifnull($expr1, $expr2)";
104
        }
104
        }
-
 
105
 
-
 
106
        public function filterQuery($sql): string {
-
 
107
                return $sql;
-
 
108
        }
-
 
109
 
-
 
110
        public function getSQLBool($bool): string {
-
 
111
                return $bool ? '1' : '0';
-
 
112
        }
105
}
113
}
106
114