← Back to Stormify Documentation

ResultSet

A table of data resulting from a query, read row-by-row via next.

Functions

Link copied to clipboard

Returns metadata describing the columns in this result set.

Link copied to clipboard
abstract fun getObject(columnIndex: Int, type: KClass<*>): Any?

Retrieves the value at the given 1-based columnIndex, converting it to the requested type.

Link copied to clipboard
abstract fun next(): Boolean

Advances to the next row. Returns true if a row is available, false when exhausted.