Package org.hibernate.sql.exec.spi
Interface JdbcOperationQuery
- All Superinterfaces:
JdbcOperation
- All Known Subinterfaces:
JdbcOperationQueryAnonBlock
,JdbcOperationQueryCall
,JdbcOperationQueryInsert
,JdbcOperationQueryMutation
- All Known Implementing Classes:
AbstractJdbcOperationQuery
,AbstractJdbcOperationQueryInsert
,JdbcCallImpl
,JdbcOperationQueryDelete
,JdbcOperationQueryInsertImpl
,JdbcOperationQueryMutationNative
,JdbcOperationQuerySelect
,JdbcOperationQueryUpdate
Unifying contract for any SQL statement we want to execute via JDBC.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Signals that the SQL depends on the parameter bindings e.g.The names of tables this operation refers toDeprecated, for removal: This API element is subject to removal in a future version.No longer calledboolean
isCompatibleWith
(JdbcParameterBindings jdbcParameterBindings, QueryOptions queryOptions) Methods inherited from interface org.hibernate.sql.exec.spi.JdbcOperation
getParameterBinders, getSqlString
-
Method Details
-
getAffectedTableNames
The names of tables this operation refers to -
dependsOnParameterBindings
boolean dependsOnParameterBindings()Signals that the SQL depends on the parameter bindings e.g. due to the need for inlining of parameter values or multiValued parameters. -
getAppliedParameters
@Deprecated(since="7.0", forRemoval=true) Map<JdbcParameter,JdbcParameterBinding> getAppliedParameters()Deprecated, for removal: This API element is subject to removal in a future version.No longer calledThe parameters which were inlined into the query as literals. -
isCompatibleWith
-