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

com.sxtanna.db.struct.statement.truncate.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.Table

/**
 * An object that can truncate (delete all data) tables
 */
interface DBTruncater {

    /**
     * Truncate the data in this table
     */
    fun  truncate(table : Table)


    /**
     * An object that can truncate (delete all data) from its table
     */
    interface TableTruncater {

        /**
         * @see [DBTruncater.truncate]
         */
        fun truncate()

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy