Package org.hibernate.query.sql.spi
Interface NativeSelectQueryDefinition<R>
-
public interface NativeSelectQueryDefinition<R>
Access the values defining a native select query
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<String>
getAffectedTableNames()
List<ParameterOccurrence>
getQueryParameterOccurrences()
ResultSetMapping
getResultSetMapping()
String
getSqlString()
boolean
isCallable()
-
-
-
Method Detail
-
getSqlString
String getSqlString()
-
getQueryParameterOccurrences
List<ParameterOccurrence> getQueryParameterOccurrences()
- API Note:
- This returns query parameters in the order they were encountered - potentially including "duplicate references" to a single parameter
-
getResultSetMapping
ResultSetMapping getResultSetMapping()
-
isCallable
boolean isCallable()
-
-