aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr242797_1/base/src/bug/QueryUtils.java
blob: 3b19e83cae10aaef92eaecc0d9c1571b85bf79fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Created on Aug 18, 2008
 */
package bug;

public class QueryUtils {
	
	public static String select(Class<?> from, String alias){
		return select(from, alias, alias);
	}
	
	public static String select(Class<?> from, String alias, String target){
		return "SELECT " + target + " FROM " + from.getName() + " " + alias + " ";
	}

}