Package org.hibernate.loader.custom

This package defines a framework for custom loaders that accept handwritten SQL

See:
          Description

Interface Summary
CustomQuery Extension point allowing any SQL query with named and positional parameters to be executed by Hibernate, returning managed entities, collections and simple scalar values.
 

Class Summary
ColumnCollectionAliases CollectionAliases that uses columnnames instead of generated aliases.
CustomLoader Extension point for loaders which use a SQL result set with "unexpected" column aliases.
SQLCustomQuery Implements Hibernate's built-in support for native SQL queries.
SQLQueryCollectionReturn Represents a return defined as part of a native sql query which names a collection role in the form {classname}.{collectionrole}; it is used in defining a custom sql query for loading an entity's collection in non-fetching scenarios (i.e., loading the collection itself as the "root" of the result).
SQLQueryJoinReturn Represents a return defined as part of a native sql query which names a fetched role.
SQLQueryParser  
SQLQueryParser.ParameterSubstitutionRecognizer  
SQLQueryReturn Represents the base information for a return defined as part of a native sql query.
SQLQueryReturnProcessor  
SQLQueryRootReturn Represents a return defined as part of a native sql query which names a "root" entity.
SQLQueryScalarReturn  
 

Package org.hibernate.loader.custom Description

This package defines a framework for custom loaders that accept handwritten SQL