br.com.simpli.sql.ReadConPipe.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simpli-sql Show documentation
Show all versions of simpli-sql Show documentation
An SQL connector from Simpli.
package br.com.simpli.sql
/**
*
* @author gil
*/
open class ReadConPipe(dsName: String) : AbstractConPipe(dsName) {
override fun handle(callback: (connector: AbstractConnector) -> T) = handleConnection { con ->
callback(ReadConnector(con))
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy