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 Details

    • getSqlString

      String getSqlString()
      The SQL command we will be executing through JDBC.
    • getAffectedTableNames

      Set<String> getAffectedTableNames()
      The names of tables referred to by this operation.
    • getParameterBinders

      List<JdbcParameterBinder> getParameterBinders()
      The list of parameter binders for the generated PreparedStatement.