public interface CustomQuery
Modifier and Type | Method and Description |
---|---|
java.util.List<Return> |
getCustomQueryReturns()
A collection of
descriptors describing the
JDBC result set to be expected and how to map this result set. |
java.util.Map |
getNamedParameterBindPoints()
A map representing positions within the supplied
query to
which we need to bind named parameters. |
java.util.Set<java.lang.String> |
getQuerySpaces()
Any query spaces to apply to the query execution.
|
java.lang.String |
getSQL()
The SQL query string to be performed.
|
java.lang.String getSQL()
java.util.Set<java.lang.String> getQuerySpaces()
java.util.Map getNamedParameterBindPoints()
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:Integer
if the
parameter occurs only once in the query; or a List of Integers if the
parameter occurs more than oncejava.util.List<Return> getCustomQueryReturns()
descriptors
describing the
JDBC result set to be expected and how to map this result set.Copyright © 2001-2018 Red Hat, Inc. All Rights Reserved.