InsertStatement
open class InsertStatement<Key : Any>(val table: Table, val isIgnore: Boolean = false) : UpdateBuilder<Int>
Represents the SQL statement that inserts a new row into a table.
Parameters
table
Table to insert the new row into.
isIgnore
Whether to ignore errors or not. Note isIgnore is not supported by all vendors. Please check the documentation.
Inheritors
Properties
Functions
Link copied to clipboard
Returns the string representation of an SQL statement.
Link copied to clipboard
Updates the mapping of the specified column with the value of the provided expression.