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

io.lenses.jdbc4.resultset.AbstractResultSet.kt Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.lenses.jdbc4.resultset

import io.lenses.jdbc4.IWrapper
import java.sql.ResultSet
import java.sql.SQLFeatureNotSupportedException
import java.sql.SQLWarning

interface AbstractResultSet : ResultSet, IWrapper {

  override fun getCursorName(): String = throw SQLFeatureNotSupportedException()

  override fun clearWarnings() {}
  override fun getWarnings(): SQLWarning? = null

  override fun isWrapperFor(iface: Class<*>?): Boolean = _isWrapperFor(iface)
  override fun  unwrap(iface: Class): T = _unwrap(iface)

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy