Package org.jhighfun.util.sql

Examples of org.jhighfun.util.sql.SQLQuery


import org.jhighfun.util.sql.SQLQuery;

public class SQLUtil {

    public static SQLQuery SQLQuery(String query) {
        return new SQLQuery(query, SqlDataStore.getDataSource());
    }
View Full Code Here


    public static SQLQuery SQLQuery(String query) {
        return new SQLQuery(query, SqlDataStore.getDataSource());
    }

    public static SQLQuery SQLQuery(String query, DataSource dataSource) {
        return new SQLQuery(query, dataSource);
    }
View Full Code Here

TOP

Related Classes of org.jhighfun.util.sql.SQLQuery

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.