Examples of AvgWithArgumentCastFunction


Examples of org.hibernate.dialect.function.AvgWithArgumentCastFunction

      registerColumnType( Types.BLOB, "blob" );
      registerColumnType( Types.CLOB, "clob" );
    }

    // aggregate functions
    registerFunction( "avg", new AvgWithArgumentCastFunction( "double" ) );

    // string functions
    registerFunction( "ascii", new StandardSQLFunction( "ascii", StandardBasicTypes.INTEGER ) );
    registerFunction( "char", new StandardSQLFunction( "char", StandardBasicTypes.CHARACTER ) );
    registerFunction( "lower", new StandardSQLFunction( "lower" ) );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.