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

commonMain.com.github.mejiomah17.yasb.sqlite.SqliteInsertTest.kt Maven / Gradle / Ivy

The newest version!
package com.github.mejiomah17.yasb.sqlite

import com.github.mejiomah17.yasb.core.transaction.TransactionAtLeastRepeatableRead
import com.github.mejiomah17.yasb.dsl.InsertWithReturningTest
import com.github.mejiomah17.yasb.dsl.TestTable

interface SqliteInsertTest<
    TABLE : TestTable,
    DRIVER_DATA_SOURCE,
    DRIVER_STATEMENT,
    DIALECT : SqliteDatabaseDialect,
    TRANSACTION : TransactionAtLeastRepeatableRead
    > :
    InsertWithReturningTest {

    override fun initSqlScripts(): List {
        return listOf(
            "DELETE from test"
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy