Interface Column.Fetcher<C>

Type Parameters:
C - the type of the column value being fetched
Enclosing interface:
Column<T>

public static interface Column.Fetcher<C>
Fetches a single value from a result set.
  • Method Summary

    Modifier and Type
    Method
    Description
    get(ResultSet resultSet, int index)
    Fetches a single value from a ResultSet
  • Method Details

    • get

      C get(ResultSet resultSet, int index) throws SQLException
      Fetches a single value from a ResultSet
      Parameters:
      resultSet - the ResultSet
      index - the index of the column to fetch
      Returns:
      a single value fetched from the given ResultSet
      Throws:
      SQLException - in case of an exception