org.hibernate
Interface SQLQuery.FetchReturn

Enclosing interface:
SQLQuery

public static interface SQLQuery.FetchReturn

Allows access to further control how join fetch returns are mapped back from result sets


Method Summary
 SQLQuery.ReturnProperty addProperty(String propertyName)
          Add a property, presumably with more than one column.
 SQLQuery.FetchReturn addProperty(String propertyName, String columnAlias)
          Add a simple property-to-one-column mapping
 SQLQuery.FetchReturn setLockMode(LockMode lockMode)
          Set the lock mode for this return
 

Method Detail

setLockMode

SQLQuery.FetchReturn setLockMode(LockMode lockMode)
Set the lock mode for this return

Parameters:
lockMode - The new lock mode.
Returns:
this, for method chaining

addProperty

SQLQuery.FetchReturn addProperty(String propertyName,
                                 String columnAlias)
Add a simple property-to-one-column mapping

Parameters:
propertyName - The name of the property.
columnAlias - The name of the column
Returns:
this, for method chaining

addProperty

SQLQuery.ReturnProperty addProperty(String propertyName)
Add a property, presumably with more than one column.

Parameters:
propertyName - The name of the property.
Returns:
The config object for further control.


Copyright © 2001-2012 Red Hat, Inc. All Rights Reserved.