DbSource

@Serializable
sealed class DbSource(source)

What to read from the database: a whole table, or the result of a query.

Inheritors

Constructors

Link copied to clipboard
protected constructor()

Types

Link copied to clipboard
@Serializable
data class Query(val sql: String) : DbSource
Link copied to clipboard
@Serializable
data class Table(val name: String) : DbSource