Class

org.gerweck.scala.util.jdbc

WrappedResultSet

Related Doc: package jdbc

Permalink

class WrappedResultSet extends ResultSet with WrapperWrapping[ResultSet]

A wrapper around a JDBC java.sql.ResultSet.

This is useful to allow you to override or wrap certain methods: you can use this as a base class and override just the methods you care about. Everything else will delegate to the underlying connection.

Source
WrappedResultSet.scala
Linear Supertypes
WrapperWrapping[ResultSet], ResultSet, AutoCloseable, Wrapper, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WrappedResultSet
  2. WrapperWrapping
  3. ResultSet
  4. AutoCloseable
  5. Wrapper
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new WrappedResultSet(inner: ResultSet)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedResultSet to any2stringadd[WrappedResultSet] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (WrappedResultSet, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedResultSet to ArrowAssoc[WrappedResultSet] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. def absolute(arg0: Int): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  7. def afterLast(): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def beforeFirst(): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  10. def cancelRowUpdates(): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  11. def clearWarnings(): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  12. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def close(): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet → AutoCloseable
  14. def deleteRow(): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  15. def ensuring(cond: (WrappedResultSet) ⇒ Boolean, msg: ⇒ Any): WrappedResultSet

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedResultSet to Ensuring[WrappedResultSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (WrappedResultSet) ⇒ Boolean): WrappedResultSet

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedResultSet to Ensuring[WrappedResultSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: ⇒ Any): WrappedResultSet

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedResultSet to Ensuring[WrappedResultSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): WrappedResultSet

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedResultSet to Ensuring[WrappedResultSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. def equals(that: Any): Boolean

    Permalink
    Definition Classes
    WrapperWrapping → AnyRef → Any
  21. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. def findColumn(arg0: String): Int

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  23. def first(): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  24. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedResultSet to StringFormat[WrappedResultSet] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  25. def getArray(arg0: Int): Array

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  26. def getArray(arg0: String): Array

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  27. def getAsciiStream(arg0: Int): InputStream

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  28. def getAsciiStream(arg0: String): InputStream

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  29. def getBigDecimal(arg0: Int): BigDecimal

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  30. def getBigDecimal(arg0: String): BigDecimal

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  31. def getBinaryStream(arg0: Int): InputStream

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  32. def getBinaryStream(arg0: String): InputStream

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  33. def getBlob(arg0: Int): Blob

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  34. def getBlob(arg0: String): Blob

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  35. def getBoolean(arg0: Int): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  36. def getBoolean(arg0: String): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  37. def getByte(arg0: Int): Byte

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  38. def getByte(arg0: String): Byte

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  39. def getBytes(arg0: Int): Array[Byte]

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  40. def getBytes(arg0: String): Array[Byte]

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  41. def getCharacterStream(arg0: Int): Reader

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  42. def getCharacterStream(arg0: String): Reader

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  43. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  44. def getClob(arg0: Int): Clob

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  45. def getClob(arg0: String): Clob

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  46. def getConcurrency(): Int

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  47. def getCursorName(): String

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  48. def getDate(arg0: Int): Date

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  49. def getDate(arg0: String): Date

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  50. def getDate(arg0: Int, arg1: Calendar): Date

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  51. def getDate(arg0: String, arg1: Calendar): Date

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  52. def getDouble(arg0: Int): Double

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  53. def getDouble(arg0: String): Double

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  54. def getFetchDirection(): Int

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  55. def getFetchSize(): Int

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  56. def getFloat(arg0: Int): Float

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  57. def getFloat(arg0: String): Float

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  58. def getHoldability(): Int

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  59. def getInt(arg0: Int): Int

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  60. def getInt(arg0: String): Int

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  61. def getLong(arg0: Int): Long

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  62. def getLong(arg0: String): Long

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  63. def getMetaData(): ResultSetMetaData

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  64. def getNCharacterStream(arg0: Int): Reader

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  65. def getNCharacterStream(arg0: String): Reader

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  66. def getNClob(arg0: Int): NClob

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  67. def getNClob(arg0: String): NClob

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  68. def getNString(arg0: Int): String

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  69. def getNString(arg0: String): String

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  70. def getObject(arg0: Int): AnyRef

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  71. def getObject(arg0: String): AnyRef

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  72. def getObject(arg0: Int, arg1: Map[String, Class[_]]): AnyRef

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  73. def getObject(arg0: String, arg1: Map[String, Class[_]]): AnyRef

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  74. def getObject[T](arg0: Int, arg1: Class[T]): T

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  75. def getObject[T](arg0: String, arg1: Class[T]): T

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  76. def getRef(arg0: Int): Ref

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  77. def getRef(arg0: String): Ref

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  78. def getRow(): Int

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  79. def getRowId(arg0: Int): RowId

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  80. def getRowId(arg0: String): RowId

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  81. def getSQLXML(arg0: Int): SQLXML

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  82. def getSQLXML(arg0: String): SQLXML

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  83. def getShort(arg0: Int): Short

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  84. def getShort(arg0: String): Short

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  85. def getStatement(): Statement

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  86. def getString(arg0: Int): String

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  87. def getString(arg0: String): String

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  88. def getTime(arg0: Int): Time

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  89. def getTime(arg0: String): Time

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  90. def getTime(arg0: Int, arg1: Calendar): Time

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  91. def getTime(arg0: String, arg1: Calendar): Time

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  92. def getTimestamp(arg0: Int): Timestamp

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  93. def getTimestamp(arg0: String): Timestamp

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  94. def getTimestamp(arg0: Int, arg1: Calendar): Timestamp

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  95. def getTimestamp(arg0: String, arg1: Calendar): Timestamp

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  96. def getType(): Int

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  97. def getURL(arg0: Int): URL

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  98. def getURL(arg0: String): URL

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  99. def getWarnings(): SQLWarning

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  100. def hashCode(): Int

    Permalink
    Definition Classes
    WrapperWrapping → AnyRef → Any
  101. val inner: ResultSet

    Permalink
    Definition Classes
    WrappedResultSetWrapperWrapping
  102. def insertRow(): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  103. def isAfterLast(): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  104. def isBeforeFirst(): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  105. def isClosed(): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  106. def isFirst(): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  107. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  108. def isLast(): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  109. def isWrapperFor(clazz: Class[_]): Boolean

    Permalink
    Definition Classes
    WrapperWrapping → Wrapper
  110. def last(): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  111. def moveToCurrentRow(): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  112. def moveToInsertRow(): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  113. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  114. def next(): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  115. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  116. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  117. def previous(): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  118. def refreshRow(): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  119. def relative(arg0: Int): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  120. def rowDeleted(): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  121. def rowInserted(): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  122. def rowUpdated(): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  123. def setFetchDirection(arg0: Int): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  124. def setFetchSize(arg0: Int): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  125. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  126. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  127. def unwrap[T](clazz: Class[T]): T

    Permalink
    Definition Classes
    WrapperWrapping → Wrapper
  128. def updateArray(arg0: Int, arg1: Array): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  129. def updateArray(arg0: String, arg1: Array): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  130. def updateAsciiStream(arg0: Int, arg1: InputStream, arg2: Int): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  131. def updateAsciiStream(arg0: String, arg1: InputStream, arg2: Int): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  132. def updateAsciiStream(arg0: Int, arg1: InputStream, arg2: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  133. def updateAsciiStream(arg0: String, arg1: InputStream, arg2: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  134. def updateAsciiStream(arg0: Int, arg1: InputStream): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  135. def updateAsciiStream(arg0: String, arg1: InputStream): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  136. def updateBigDecimal(arg0: Int, arg1: BigDecimal): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  137. def updateBigDecimal(arg0: String, arg1: BigDecimal): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  138. def updateBinaryStream(arg0: Int, arg1: InputStream, arg2: Int): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  139. def updateBinaryStream(arg0: String, arg1: InputStream, arg2: Int): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  140. def updateBinaryStream(arg0: Int, arg1: InputStream, arg2: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  141. def updateBinaryStream(arg0: String, arg1: InputStream, arg2: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  142. def updateBinaryStream(arg0: Int, arg1: InputStream): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  143. def updateBinaryStream(arg0: String, arg1: InputStream): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  144. def updateBlob(arg0: Int, arg1: Blob): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  145. def updateBlob(arg0: String, arg1: Blob): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  146. def updateBlob(arg0: Int, arg1: InputStream, arg2: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  147. def updateBlob(arg0: String, arg1: InputStream, arg2: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  148. def updateBlob(arg0: Int, arg1: InputStream): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  149. def updateBlob(arg0: String, arg1: InputStream): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  150. def updateBoolean(arg0: Int, arg1: Boolean): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  151. def updateBoolean(arg0: String, arg1: Boolean): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  152. def updateByte(arg0: Int, arg1: Byte): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  153. def updateByte(arg0: String, arg1: Byte): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  154. def updateBytes(arg0: Int, arg1: Array[Byte]): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  155. def updateBytes(arg0: String, arg1: Array[Byte]): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  156. def updateCharacterStream(arg0: Int, arg1: Reader, arg2: Int): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  157. def updateCharacterStream(arg0: String, arg1: Reader, arg2: Int): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  158. def updateCharacterStream(arg0: Int, arg1: Reader, arg2: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  159. def updateCharacterStream(arg0: String, arg1: Reader, arg2: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  160. def updateCharacterStream(arg0: Int, arg1: Reader): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  161. def updateCharacterStream(arg0: String, arg1: Reader): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  162. def updateClob(arg0: Int, arg1: Clob): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  163. def updateClob(arg0: String, arg1: Clob): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  164. def updateClob(arg0: Int, arg1: Reader, arg2: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  165. def updateClob(arg0: String, arg1: Reader, arg2: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  166. def updateClob(arg0: Int, arg1: Reader): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  167. def updateClob(arg0: String, arg1: Reader): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  168. def updateDate(arg0: Int, arg1: Date): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  169. def updateDate(arg0: String, arg1: Date): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  170. def updateDouble(arg0: Int, arg1: Double): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  171. def updateDouble(arg0: String, arg1: Double): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  172. def updateFloat(arg0: Int, arg1: Float): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  173. def updateFloat(arg0: String, arg1: Float): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  174. def updateInt(arg0: Int, arg1: Int): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  175. def updateInt(arg0: String, arg1: Int): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  176. def updateLong(arg0: Int, arg1: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  177. def updateLong(arg0: String, arg1: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  178. def updateNCharacterStream(arg0: Int, arg1: Reader, arg2: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  179. def updateNCharacterStream(arg0: String, arg1: Reader, arg2: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  180. def updateNCharacterStream(arg0: Int, arg1: Reader): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  181. def updateNCharacterStream(arg0: String, arg1: Reader): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  182. def updateNClob(arg0: Int, arg1: NClob): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  183. def updateNClob(arg0: String, arg1: NClob): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  184. def updateNClob(arg0: Int, arg1: Reader, arg2: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  185. def updateNClob(arg0: String, arg1: Reader, arg2: Long): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  186. def updateNClob(arg0: Int, arg1: Reader): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  187. def updateNClob(arg0: String, arg1: Reader): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  188. def updateNString(arg0: Int, arg1: String): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  189. def updateNString(arg0: String, arg1: String): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  190. def updateNull(arg0: Int): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  191. def updateNull(arg0: String): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  192. def updateObject(arg0: Int, arg1: Any, arg2: Int): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  193. def updateObject(arg0: Int, arg1: Any): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  194. def updateObject(arg0: String, arg1: Any, arg2: Int): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  195. def updateObject(arg0: String, arg1: Any): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  196. def updateObject(arg0: String, arg1: Any, arg2: SQLType): Unit

    Permalink
    Definition Classes
    ResultSet
    Annotations
    @throws( classOf[java.sql.SQLException] )
  197. def updateObject(arg0: Int, arg1: Any, arg2: SQLType): Unit

    Permalink
    Definition Classes
    ResultSet
    Annotations
    @throws( classOf[java.sql.SQLException] )
  198. def updateObject(arg0: String, arg1: Any, arg2: SQLType, arg3: Int): Unit

    Permalink
    Definition Classes
    ResultSet
    Annotations
    @throws( classOf[java.sql.SQLException] )
  199. def updateObject(arg0: Int, arg1: Any, arg2: SQLType, arg3: Int): Unit

    Permalink
    Definition Classes
    ResultSet
    Annotations
    @throws( classOf[java.sql.SQLException] )
  200. def updateRef(arg0: Int, arg1: Ref): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  201. def updateRef(arg0: String, arg1: Ref): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  202. def updateRow(): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  203. def updateRowId(arg0: Int, arg1: RowId): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  204. def updateRowId(arg0: String, arg1: RowId): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  205. def updateSQLXML(arg0: Int, arg1: SQLXML): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  206. def updateSQLXML(arg0: String, arg1: SQLXML): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  207. def updateShort(arg0: Int, arg1: Short): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  208. def updateShort(arg0: String, arg1: Short): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  209. def updateString(arg0: Int, arg1: String): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  210. def updateString(arg0: String, arg1: String): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  211. def updateTime(arg0: Int, arg1: Time): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  212. def updateTime(arg0: String, arg1: Time): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  213. def updateTimestamp(arg0: Int, arg1: Timestamp): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  214. def updateTimestamp(arg0: String, arg1: Timestamp): Unit

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  215. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  216. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  217. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  218. def wasNull(): Boolean

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
  219. def [B](y: B): (WrappedResultSet, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from WrappedResultSet to ArrowAssoc[WrappedResultSet] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def getBigDecimal(arg0: Int, arg1: Int): BigDecimal

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
    Annotations
    @deprecated
    Deprecated

    (Since version Deprecated by Java.) 1.0

  2. def getBigDecimal(arg0: String, arg1: Int): BigDecimal

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
    Annotations
    @deprecated
    Deprecated

    (Since version Deprecated by Java.) 1.0

  3. def getUnicodeStream(arg0: Int): InputStream

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
    Annotations
    @deprecated
    Deprecated

    (Since version Deprecated by Java.) 1.0

  4. def getUnicodeStream(arg0: String): InputStream

    Permalink
    Definition Classes
    WrappedResultSet → ResultSet
    Annotations
    @deprecated
    Deprecated

    (Since version Deprecated by Java.) 1.0

Inherited from WrapperWrapping[ResultSet]

Inherited from ResultSet

Inherited from AutoCloseable

Inherited from Wrapper

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from WrappedResultSet to any2stringadd[WrappedResultSet]

Inherited by implicit conversion StringFormat from WrappedResultSet to StringFormat[WrappedResultSet]

Inherited by implicit conversion Ensuring from WrappedResultSet to Ensuring[WrappedResultSet]

Inherited by implicit conversion ArrowAssoc from WrappedResultSet to ArrowAssoc[WrappedResultSet]

Ungrouped