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

com.dbobjekts.jdbc.DataSourceAdapter.kt Maven / Gradle / Ivy

There is a newer version: 0.6.0-RC2
Show newest version
package com.dbobjekts.jdbc

import java.sql.Connection
import javax.sql.DataSource

interface DataSourceAdapter {
    fun close()
    fun createConnection(): Connection
    val dataSource: DataSource
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy