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.
- Author:
- Steve Ebersole
-
Method Summary
Modifier and TypeMethodDescriptionbooleanSignals that the SQL depends on the parameter bindings e.g. due to the need for inlining of parameter values or multiValued parameters.The names of tables this operation refers toThe parameters which were inlined into the query as literals.default Set<FilterJdbcParameter>Deprecated.No longer used.booleanisCompatibleWith(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 -
getFilterJdbcParameters
Deprecated.No longer used.Any parameters to apply for filters- See Also:
-
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
Map<JdbcParameter,JdbcParameterBinding> getAppliedParameters()The parameters which were inlined into the query as literals. -
isCompatibleWith
-