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

ru.astrainteractive.astralibs.orm.query.Query.kt Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package ru.astrainteractive.astralibs.orm.query

interface Query {
    fun generate(): String
    companion object {
        val Count = ::CountQuery
        val Create = ::CreateQuery
        val Delete = ::DeleteQuery
        val Insert = ::InsertQuery
        val Select = ::SelectQuery
        val Update = ::UpdateQuery
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy