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

com.sxtanna.db.struct.statement.drop.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 drop (delete) a table
 */
interface DBDropper {

    fun drop(database : Database)

    /**
     * Drop this table
     */
    fun  drop(table : Table)


    /**
     * An object that can drop (delete) its table
     */
    interface TableDropper {

        /**
         * @see [DBDropper.drop]
         */
        fun drop()

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy