Interface QueryOutParameterBinding


public interface QueryOutParameterBinding
Runtime OUT parameter binding metadata for a stored query (e.g. Oracle RETURNING ... INTO ...). Mirrors the builder-time metadata and is used by repository operations to register CallableStatement OUT parameters in correct order and JDBC type.
Since:
5.0
  • Method Summary

    Modifier and Type
    Method
    Description
    @NonNull DataType
     
    @NonNull String
     
  • Method Details

    • getName

      @NonNull String getName()
      Returns:
      The name of the OUT column/parameter if available.
    • getDataType

      @NonNull DataType getDataType()
      Returns:
      The data type for the OUT parameter when known.