Package org.apache.empire.db.expr.column

Examples of org.apache.empire.db.expr.column.DBAliasExpr


     * @param alias the alias name
     * @return the new DBAliasExpr object
     */
    public DBColumnExpr as(String alias)
    {
        return new DBAliasExpr(this, alias);
    }
View Full Code Here


     * @param column the column whose name serves as an alias for the current expression
     * @return the new DBAliasExpr object
     */
    public DBColumnExpr as(DBColumn column)
    {
        return new DBAliasExpr(this, column.getName());
    }
View Full Code Here

     * @param alias the alias name
     * @return the new DBAliasExpr object
     */
    public DBColumnExpr as(String alias)
    {
        return new DBAliasExpr(this, alias);
    }
View Full Code Here

     * @param column the column whose name serves as an alias for the current expression
     * @return the new DBAliasExpr object
     */
    public DBColumnExpr as(DBColumn column)
    {
        return new DBAliasExpr(this, column.getName());
    }
View Full Code Here

     * @param alias the alias name
     * @return the new DBAliasExpr object
     */
    public DBColumnExpr as(String alias)
    {
        return new DBAliasExpr(this, alias);
    }
View Full Code Here

     * @param column the column whose name serves as an alias for the current expression
     * @return the new DBAliasExpr object
     */
    public DBColumnExpr as(DBColumn column)
    {
        return new DBAliasExpr(this, column.getName());
    }
View Full Code Here

     * @param alias the alias name
     * @return the new DBAliasExpr object
     */
    public DBColumnExpr as(String alias)
    {
        return new DBAliasExpr(this, alias);
    }
View Full Code Here

     * @param column the column whose name serves as an alias for the current expression
     * @return the new DBAliasExpr object
     */
    public DBColumnExpr as(DBColumn column)
    {
        return new DBAliasExpr(this, column.getName());
    }
View Full Code Here

     * @param alias the alias name
     * @return the new DBAliasExpr object
     */
    public DBColumnExpr as(String alias)
    {
        return new DBAliasExpr(this, alias);
    }
View Full Code Here

     * @param column the column whose name serves as an alias for the current expression
     * @return the new DBAliasExpr object
     */
    public DBColumnExpr as(DBColumn column)
    {
        return new DBAliasExpr(this, column.getName());
    }
View Full Code Here

TOP

Related Classes of org.apache.empire.db.expr.column.DBAliasExpr

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.