Package org.hibernate.sql.exec.spi
Interface JdbcOperation
- All Known Subinterfaces:
JdbcMutationOperation
,JdbcOperationQuery
,JdbcOperationQueryAnonBlock
,JdbcOperationQueryCall
,JdbcOperationQueryInsert
,JdbcOperationQueryMutation
- All Known Implementing Classes:
AbstractJdbcMutation
,AbstractJdbcOperationQuery
,AbstractJdbcOperationQueryInsert
,JdbcCallImpl
,JdbcDeleteMutation
,JdbcInsertMutation
,JdbcOperationQueryDelete
,JdbcOperationQueryInsertImpl
,JdbcOperationQueryMutationNative
,JdbcOperationQuerySelect
,JdbcOperationQueryUpdate
,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 TypeMethodDescriptionGet the list of parameter binders for the generated PreparedStatementGet the SQL command we will be executing through JDBC PreparedStatement or CallableStatement
-
Method Details
-
getSqlString
String getSqlString()Get the SQL command we will be executing through JDBC PreparedStatement or CallableStatement -
getParameterBinders
List<JdbcParameterBinder> getParameterBinders()Get the list of parameter binders for the generated PreparedStatement
-