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: Any): Boolean

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

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

    Definition Classes
    AnyRef → Any
  4. def addBatch(arg0: String): Unit

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

    Definition Classes
    Any
  6. def cancel(): Unit

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    WrappedStatementWrapperWrapping
  50. def isCloseOnCompletion(): Boolean

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

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

    Definition Classes
    Any
  53. def isPoolable(): Boolean

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  68. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  72. 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