Interface QueryOutParameterBinding


@Internal public interface QueryOutParameterBinding
Describes an OUT parameter binding for a SQL query (for example Oracle RETURNING ... INTO ...). This metadata is attached to QueryResult and can be propagated into the runtime to register or bind OUT parameters in the correct order and data type.
Since:
5.0
  • Method Summary

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

    • getName

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

      @NonNull @NonNull DataType getDataType()
      Returns:
      The data type, when known.