Example usage for org.hibernate.dialect Dialect createOuterJoinFragment

List of usage examples for org.hibernate.dialect Dialect createOuterJoinFragment

Introduction

In this page you can find the example usage for org.hibernate.dialect Dialect createOuterJoinFragment.

Prototype

public JoinFragment createOuterJoinFragment() 

Source Link

Document

Create a JoinFragment strategy responsible for handling this dialect's variations in how joins are handled.

Usage

From source file:com.evinceframework.data.warehouse.query.jdbc.SqlQueryBuilder.java

License:Apache License

public SqlQueryBuilder(Query query, Dialect dialect) {
    this.query = query;

    this.dialect = dialect;
    this.selectFrag = new SelectFragment();
    this.joinFrag = dialect.createOuterJoinFragment();

    this.context = new SqlCriterionContext(this);
}