Find index of the column with the given name. Returned index can be used to get column value from SqlRow.
Column index. If a column is not found, -1 is returned.
-1
IllegalArgumentError is thrown if columnName is not string.
Gets column metadata of column with given index.
SqlColumnMetadata of column with this index, undefined if column is not found.
Gets the number of columns in the row.
column count
Get column metadata objects.
this row's SqlColumnMetadata objects.
Generated using TypeDoc
Find index of the column with the given name. Returned index can be used to get column value from SqlRow.
Returns
Column index. If a column is not found,
-1is returned.Throws
IllegalArgumentError is thrown if columnName is not string.