InsertRows

data class InsertRows(val table: Table, val columnValues: List<Map<DbIdentifier, ColumnValue>>, val fromSelect: SelectQuery?) : ModelChange(source)

Constructors

Link copied to clipboard
constructor(table: Table, columnValues: List<Map<DbIdentifier, ColumnValue>>, fromSelect: SelectQuery?)

Types

Link copied to clipboard
class InsertRowsBuilder(var alias: String? = null, columnValues: MutableList<Map<DbIdentifier, ColumnValue>> = mutableListOf(), fromSelect: SelectQuery? = null) : TableAliasBuilder<InsertRows.InsertRowsBuilder, InsertRows>

Properties

Link copied to clipboard
val columnValues: List<Map<DbIdentifier, ColumnValue>>
Link copied to clipboard
Link copied to clipboard
val table: Table