Class

org.gerweck.scala.util.jdbc

WrappedStatement

Related Doc: package jdbc

Permalink

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
Visibility
  1. Public
  2. All

Instance Constructors

  1. new WrappedStatement(inner: Statement)

    Permalink

Value Members

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  6. def cancel(): Unit

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    WrappedStatementWrapperWrapping
  50. def isCloseOnCompletion(): Boolean

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

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

    Permalink
    Definition Classes
    Any
  53. def isPoolable(): Boolean

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    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