Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • SqlRow

Index

Methods

getMetadata

  • getMetadata(): SqlRowMetadata
  • Get row metadata of this row.

    Returns SqlRowMetadata

    row metadata

getObject

  • getObject<T>(columnNameOrIndex: string | number): T
  • Gets the value of the column by column index or column name. The class of the returned value depends on the SQL type of the column. See SqlColumnType

    throws

    IllegalArgumentError if columnNameOrIndex is string and column specified with name does not exist

    throws

    IllegalArgumentError if columnNameOrIndex is not string or number

    Type parameters

    • T

    Parameters

    • columnNameOrIndex: string | number

      Column name or index

    Returns T

    value in specified column of this row, or undefined if there is no value at the provided index.

Generated using TypeDoc