Interface BindTarget

All Superinterfaces:
BindTarget

@Deprecated public interface BindTarget extends BindTarget
Deprecated.
since 1.2 in favor of Spring R2DBC. Use BindTarget instead.
Target to apply bindings to.
Author:
Mark Paluch
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    bind(int index, Object value)
    Deprecated.
    Bind a value to an index.
    void
    bind(String identifier, Object value)
    Deprecated.
    Bind a value.
    void
    bindNull(int index, Class<?> type)
    Deprecated.
    Bind a null value.
    void
    bindNull(String identifier, Class<?> type)
    Deprecated.
    Bind a null value.
  • Method Details

    • bind

      void bind(String identifier, Object value)
      Deprecated.
      Bind a value.
      Specified by:
      bind in interface BindTarget
      Parameters:
      identifier - the identifier to bind to.
      value - the value to bind.
    • bind

      void bind(int index, Object value)
      Deprecated.
      Bind a value to an index. Indexes are zero-based.
      Specified by:
      bind in interface BindTarget
      Parameters:
      index - the index to bind to.
      value - the value to bind.
    • bindNull

      void bindNull(String identifier, Class<?> type)
      Deprecated.
      Bind a null value.
      Specified by:
      bindNull in interface BindTarget
      Parameters:
      identifier - the identifier to bind to.
      type - the type of null value.
    • bindNull

      void bindNull(int index, Class<?> type)
      Deprecated.
      Bind a null value.
      Specified by:
      bindNull in interface BindTarget
      Parameters:
      index - the index to bind to.
      type - the type of null value.