getRaw

fun getRaw(index: Int): Any?

Retrieves the raw, decoded database value for the column at the specified index.

Return

The raw value (its type depends on the registered codec for the column's OID).

Parameters

index

The zero-based index of the column.

Throws

if the index is out of bounds.


fun getRaw(columnName: String): Any?

Retrieves the raw, decoded database value for the column with the specified columnName.

Return

The raw value (its type depends on the registered codec for the column's OID).

Parameters

columnName

The name of the column.

Throws

if the column name does not exist in this row.