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

io.tcds.orm.column.BooleanColumn.kt Maven / Gradle / Ivy

Go to download

Kotlin Simple ORM is a simple but powerful database orm for kotlin applications

There is a newer version: 0.3.14
Show newest version
package io.tcds.orm.column

import io.tcds.orm.Column
import java.sql.PreparedStatement

class BooleanColumn(name: String, value: (Entity) -> Boolean) : Column(name, value) {
    override fun columnType(): String = "BOOLEAN"
    override fun bind(stmt: PreparedStatement, index: Int, value: Boolean) = stmt.setBoolean(index, value)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy