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 Type
    Method
    Description
    Get the list of parameter binders for the generated PreparedStatement
    Get 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