RowApi

interface RowApi

Interface representing access to data rows by index or column name. This API allows retrieving objects from a row, either by the zero-based index of the column or by its name, with optional type conversion for strongly-typed results.

Functions

Link copied to clipboard
abstract fun getObject(index: Int): Any?
abstract fun getObject(name: String): Any?
abstract fun <T> getObject(index: Int, type: Class<T>): T?
abstract fun <T> getObject(name: String, type: Class<T>): T?