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 JDBCPreparedStatement
orCallableStatement
execution
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<JdbcParameterBinder>
getParameterBinders()
Get the list of parameter binders for the generated PreparedStatementString
getSqlString()
Get the SQL command we will be executing through JDBC PreparedStatement or CallableStatement
-
-
-
Method Detail
-
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
-
-