Methods Summary |
---|
public java.util.List | getCustomQueryReturns()A collection of {@link Return descriptors} describing the
JDBC result set to be expected and how to map this result set.
|
public java.util.Map | getNamedParameterBindPoints()A map representing positions within the supplied {@link #getSQL query} to
which we need to bind named parameters.
Optional, may return null if no named parameters.
The structure of the returned map (if one) as follows:
- The keys into the map are the named parameter names
- The corresponding value is either an {@link Integer} if the
parameter occurs only once in the query; or a List of Integers if the
parameter occurs more than once
|
public java.util.Set | getQuerySpaces()Any query spaces to apply to the query execution. Query spaces are
used in Hibernate's auto-flushing mechanism to determine which
entities need to be checked for pending changes.
|
public java.lang.String | getSQL()The SQL query string to be performed.
|