InsertRowsBuilder

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

Constructors

Link copied to clipboard
constructor(alias: String? = null, columnValues: MutableList<Map<DbIdentifier, ColumnValue>> = mutableListOf(), fromSelect: SelectQuery? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
open override var alias: String?
Link copied to clipboard
open lateinit override var table: Table

Functions

Link copied to clipboard
fun addRows(rows: Iterable<Map<DbIdentifier, ColumnValue>>): InsertRows.InsertRowsBuilder
Link copied to clipboard
open override fun build(): InsertRows
Link copied to clipboard