QueryRecords

sealed class QueryRecords

The results of the SQL statement.

Inheritors

Types

Link copied to clipboard
data class CsvRecords(val value: String) : QueryRecords

The results of the SQL statement in CSV format.

Link copied to clipboard

Functions

Link copied to clipboard

Casts this QueryRecords as a CsvRecords and retrieves its kotlin.String value. Throws an exception if the QueryRecords is not a CsvRecords.

Link copied to clipboard

Casts this QueryRecords as a CsvRecords and retrieves its kotlin.String value. Returns null if the QueryRecords is not a CsvRecords.