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 JdbcOperationA JDBC operation to perform. This always equates to some form of JDBCPreparedStatementorCallableStatementexecution
-
-
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 PreparedStatementStringgetSqlString()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
-
-