org.gerweck.scala.util.jdbc

WrappedStatement

class WrappedStatement extends Statement with WrapperWrapping[Statement]

A wrapper around a JDBC java.sql.Statement.

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.

Linear Supertypes
WrapperWrapping[Statement], Statement, AutoCloseable, Wrapper, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. WrappedStatement
  2. WrapperWrapping
  3. Statement
  4. AutoCloseable
  5. Wrapper
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new WrappedStatement(inner: Statement)

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addBatch(arg0: String): Unit

    Definition Classes
    WrappedStatement → Statement
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def cancel(): Unit

    Definition Classes
    WrappedStatement → Statement
  9. def clearBatch(): Unit

    Definition Classes
    WrappedStatement → Statement
  10. def clearWarnings(): Unit

    Definition Classes
    WrappedStatement → Statement
  11. def clone(): AnyRef

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

    Definition Classes
    WrappedStatement → Statement → AutoCloseable
  13. def closeOnCompletion(): Unit

    Definition Classes
    WrappedStatement → Statement
  14. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    WrapperWrapping → AnyRef → Any
  16. def execute(arg0: String): Boolean

    Definition Classes
    WrappedStatement → Statement
  17. def execute(arg0: String, arg1: Int): Boolean

    Definition Classes
    WrappedStatement → Statement
  18. def execute(arg0: String, arg1: Array[Int]): Boolean

    Definition Classes
    WrappedStatement → Statement
  19. def execute(arg0: String, arg1: Array[String]): Boolean

    Definition Classes
    WrappedStatement → Statement
  20. def executeBatch(): Array[Int]

    Definition Classes
    WrappedStatement → Statement
  21. def executeLargeBatch(): Array[Long]

    Definition Classes
    Statement
    Annotations
    @throws( classOf[java.sql.SQLException] )
  22. def executeLargeUpdate(arg0: String, arg1: Array[String]): Long

    Definition Classes
    Statement
    Annotations
    @throws( classOf[java.sql.SQLException] )
  23. def executeLargeUpdate(arg0: String, arg1: Array[Int]): Long

    Definition Classes
    Statement
    Annotations
    @throws( classOf[java.sql.SQLException] )
  24. def executeLargeUpdate(arg0: String, arg1: Int): Long

    Definition Classes
    Statement
    Annotations
    @throws( classOf[java.sql.SQLException] )
  25. def executeLargeUpdate(arg0: String): Long

    Definition Classes
    Statement
    Annotations
    @throws( classOf[java.sql.SQLException] )
  26. def executeQuery(arg0: String): ResultSet

    Definition Classes
    WrappedStatement → Statement
  27. def executeUpdate(arg0: String): Int

    Definition Classes
    WrappedStatement → Statement
  28. def executeUpdate(arg0: String, arg1: Int): Int

    Definition Classes
    WrappedStatement → Statement
  29. def executeUpdate(arg0: String, arg1: Array[Int]): Int

    Definition Classes
    WrappedStatement → Statement
  30. def executeUpdate(arg0: String, arg1: Array[String]): Int

    Definition Classes
    WrappedStatement → Statement
  31. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  32. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  33. def getConnection(): Connection

    Definition Classes
    WrappedStatement → Statement
  34. def getFetchDirection(): Int

    Definition Classes
    WrappedStatement → Statement
  35. def getFetchSize(): Int

    Definition Classes
    WrappedStatement → Statement
  36. def getGeneratedKeys(): ResultSet

    Definition Classes
    WrappedStatement → Statement
  37. def getLargeMaxRows(): Long

    Definition Classes
    Statement
    Annotations
    @throws( classOf[java.sql.SQLException] )
  38. def getLargeUpdateCount(): Long

    Definition Classes
    Statement
    Annotations
    @throws( classOf[java.sql.SQLException] )
  39. def getMaxFieldSize(): Int

    Definition Classes
    WrappedStatement → Statement
  40. def getMaxRows(): Int

    Definition Classes
    WrappedStatement → Statement
  41. def getMoreResults(): Boolean

    Definition Classes
    WrappedStatement → Statement
  42. def getMoreResults(arg0: Int): Boolean

    Definition Classes
    WrappedStatement → Statement
  43. def getQueryTimeout(): Int

    Definition Classes
    WrappedStatement → Statement
  44. def getResultSet(): ResultSet

    Definition Classes
    WrappedStatement → Statement
  45. def getResultSetConcurrency(): Int

    Definition Classes
    WrappedStatement → Statement
  46. def getResultSetHoldability(): Int

    Definition Classes
    WrappedStatement → Statement
  47. def getResultSetType(): Int

    Definition Classes
    WrappedStatement → Statement
  48. def getUpdateCount(): Int

    Definition Classes
    WrappedStatement → Statement
  49. def getWarnings(): SQLWarning

    Definition Classes
    WrappedStatement → Statement
  50. def hashCode(): Int

    Definition Classes
    WrapperWrapping → AnyRef → Any
  51. val inner: Statement

    Definition Classes
    WrappedStatementWrapperWrapping
  52. def isCloseOnCompletion(): Boolean

    Definition Classes
    WrappedStatement → Statement
  53. def isClosed(): Boolean

    Definition Classes
    WrappedStatement → Statement
  54. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  55. def isPoolable(): Boolean

    Definition Classes
    WrappedStatement → Statement
  56. def isWrapperFor(clazz: Class[_]): Boolean

    Definition Classes
    WrapperWrapping → Wrapper
  57. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  58. final def notify(): Unit

    Definition Classes
    AnyRef
  59. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  60. def setCursorName(arg0: String): Unit

    Definition Classes
    WrappedStatement → Statement
  61. def setEscapeProcessing(arg0: Boolean): Unit

    Definition Classes
    WrappedStatement → Statement
  62. def setFetchDirection(arg0: Int): Unit

    Definition Classes
    WrappedStatement → Statement
  63. def setFetchSize(arg0: Int): Unit

    Definition Classes
    WrappedStatement → Statement
  64. def setLargeMaxRows(arg0: Long): Unit

    Definition Classes
    Statement
    Annotations
    @throws( classOf[java.sql.SQLException] )
  65. def setMaxFieldSize(arg0: Int): Unit

    Definition Classes
    WrappedStatement → Statement
  66. def setMaxRows(arg0: Int): Unit

    Definition Classes
    WrappedStatement → Statement
  67. def setPoolable(arg0: Boolean): Unit

    Definition Classes
    WrappedStatement → Statement
  68. def setQueryTimeout(arg0: Int): Unit

    Definition Classes
    WrappedStatement → Statement
  69. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  70. def toString(): String

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

    Definition Classes
    WrapperWrapping → Wrapper
  72. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from WrapperWrapping[Statement]

Inherited from Statement

Inherited from AutoCloseable

Inherited from Wrapper

Inherited from AnyRef

Inherited from Any

Ungrouped