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

com.sxtanna.db.struct.statement.create.kt Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
package com.sxtanna.db.struct.statement

import com.sxtanna.db.struct.Database
import com.sxtanna.db.struct.Table

/**
 * An object that can create a table in a database
 */
interface DBCreator {


    fun create(database : Database, andTables : Boolean = false)

    /**
     * Create a table in the database, if it doesn't exist
     *  * Executed automatically
     */
    fun  create(table : Table)


    /**
     * An object that can create its table
     */
    interface TableCreator {

        /**
         * @see [DBCreator.create]
         */
        fun create()

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy