Interface JdbcValueBindings

All Known Implementing Classes:
JdbcValueBindingsImpl

@Incubating public interface JdbcValueBindings
The JDBC values for a mutation
  • Method Details

    • getBindingGroup

      BindingGroup getBindingGroup(String tableName)
      Get the bindings for the specific table, or null
    • bindValue

      void bindValue(Object value, String tableName, String columnName, ParameterUsage usage)
      Binds a value for a specific column+usage
    • bindValue

      default void bindValue(Object value, SelectableMapping selectableMapping, ParameterUsage usage)
      Binds a value for a specific column+usage
    • beforeStatement

      void beforeStatement(PreparedStatementDetails statementDetails)
      Called before the execution of the operation for the specified table
    • afterStatement

      void afterStatement(TableMapping mutatingTable)
      Called after the execution of the operation for the specified table