Package org.hibernate.sql.exec.spi
Interface JdbcOperation
- All Known Subinterfaces:
JdbcMutation
,JdbcMutationOperation
,JdbcOperationQuery
,JdbcOperationQueryAnonBlock
,JdbcOperationQueryCall
,JdbcOperationQueryInsert
,JdbcOperationQueryMutation
,JdbcSelect
,PrimaryOperation
- All Known Implementing Classes:
AbstractJdbcMutation
,JdbcDeleteMutation
,JdbcInsertMutation
,JdbcUpdateMutation
,MergeOperation
,UpsertOperation
public interface JdbcOperation
A JDBC operation to perform. This always equates to
some form of JDBC
PreparedStatement
or
CallableStatement
execution.-
Method Summary
Modifier and TypeMethodDescriptionThe names of tables referred to by this operation.The list of parameter binders for the generated PreparedStatement.The SQL command we will be executing through JDBC.
-
Method Details
-
getSqlString
String getSqlString()The SQL command we will be executing through JDBC. -
getAffectedTableNames
The names of tables referred to by this operation. -
getParameterBinders
List<JdbcParameterBinder> getParameterBinders()The list of parameter binders for the generated PreparedStatement.
-