StatementResult

sealed class StatementResult

Stores the result generated by a database after statement execution and indicates the form of the result.

Inheritors

Types

Link copied to clipboard
data class Count(val count: Int) : StatementResult

Stores the affected row count (or update count) retrieved on statement execution.

Link copied to clipboard
data class Object(val resultSet: ResultSet) : StatementResult

Stores the resultSet retrieved on statement execution.