Examples of SQLFunctionRegistry


Examples of org.hibernate.dialect.function.SQLFunctionRegistry

    this.jdbcServices = this.serviceRegistry.getService( JdbcServices.class );
    this.dialect = this.jdbcServices.getDialect();

    // TODO: get SQL functions from JdbcServices (HHH-6559)
    //this.sqlFunctionRegistry = new SQLFunctionRegistry( this.jdbcServices.getSqlFunctions() );
    this.sqlFunctionRegistry = new SQLFunctionRegistry( this.dialect, new HashMap<String, SQLFunction>() );

    // TODO: get SQL functions from a new service
    // this.sqlFunctionRegistry = new SQLFunctionRegistry( getDialect(), cfg.getSqlFunctions() );

    if ( observer != null ) {
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.