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

com.infobip.kafkistry.sql.SQLRepository.kt Maven / Gradle / Ivy

There is a newer version: 0.8.0
Show newest version
package com.infobip.kafkistry.sql

interface SQLRepository : AutoCloseable {

    val tableColumns: List

    val queryExamples: List

    fun updateAllLists(objectLists: List>)

    fun query(sql: String): QueryResult

    override fun close()
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy