All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dzikoysk.exposed.upsert.UpsertInsertStatement.kt Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package net.dzikoysk.exposed.upsert

import org.jetbrains.exposed.sql.Column
import org.jetbrains.exposed.sql.Table
import org.jetbrains.exposed.sql.statements.InsertStatement

internal class UpsertInsertStatement(table: Table, isIgnore: Boolean = false) : InsertStatement(table, isIgnore) {
    internal val builderValues: Map, Any?> = super.values
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy