Interface JdbcValueDescriptor

All Known Implementing Classes:
JdbcValueDescriptorImpl

public interface JdbcValueDescriptor
Descriptor for JDBC value within an operation.
Implementation Specification:
Used while binding values to JDBC Statements
  • Method Details

    • getColumnName

      String getColumnName()
      The name of the column this parameter "maps to"
    • getUsage

      ParameterUsage getUsage()
      How the parameter is used in the query
    • getJdbcPosition

      int getJdbcPosition()
      The position within the operation, starting at 1 per JDBC
    • getJdbcMapping

      JdbcMapping getJdbcMapping()
      The JDBC mapping (type, etc.) for the parameter
    • matches

      default boolean matches(String columnName, ParameterUsage usage)