All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jporm.rx.query.find.SelectQueryBuilder Maven / Gradle / Ivy

package com.jporm.rx.query.find;

public interface SelectQueryBuilder {

    /**
     * Returns the query
     *
     * @param table
     *            The the table name
     * @return
     */
    default CustomResultFindQuery from(String table) {
    	return from(table, "");
    }

    /**
     * Returns the query
     *
     * @param table
     *            The the table name
     * @param alias
     *            the alias for the table
     * @return
     */
    CustomResultFindQuery from(String table, String alias);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy