001    package railo.runtime.db;
002    
003    import railo.runtime.exp.PageException;
004    
005    public class LikeCompare {
006            public static boolean like(SQL sql, String haystack, String needle) throws PageException {
007            return LikeCompareJRE.like(sql, haystack, needle, null);
008        }
009            
010            public static boolean like(SQL sql, String haystack, String needle,String escape) throws PageException {        
011            return LikeCompareJRE.like(sql, haystack, needle, escape);
012        }
013    }