org.gerweck.scala.util.jdbc

WrappedConnection

class WrappedConnection extends Connection with WrapperWrapping[Connection]

A wrapper around a JDBC java.sql.Connection.

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[Connection], Connection, AutoCloseable, Wrapper, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. WrappedConnection
  2. WrapperWrapping
  3. Connection
  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 WrappedConnection(inner: Connection)

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 abort(arg0: Executor): Unit

    Definition Classes
    WrappedConnection → Connection
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clearWarnings(): Unit

    Definition Classes
    WrappedConnection → Connection
  9. def clone(): AnyRef

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

    Definition Classes
    WrappedConnection → Connection → AutoCloseable
  11. def commit(): Unit

    Definition Classes
    WrappedConnection → Connection
  12. def createArrayOf(arg0: String, arg1: Array[AnyRef]): Array

    Definition Classes
    WrappedConnection → Connection
  13. def createBlob(): Blob

    Definition Classes
    WrappedConnection → Connection
  14. def createClob(): Clob

    Definition Classes
    WrappedConnection → Connection
  15. def createNClob(): NClob

    Definition Classes
    WrappedConnection → Connection
  16. def createSQLXML(): SQLXML

    Definition Classes
    WrappedConnection → Connection
  17. def createStatement(): Statement

    Definition Classes
    WrappedConnection → Connection
  18. def createStatement(arg0: Int, arg1: Int): Statement

    Definition Classes
    WrappedConnection → Connection
  19. def createStatement(arg0: Int, arg1: Int, arg2: Int): Statement

    Definition Classes
    WrappedConnection → Connection
  20. def createStruct(arg0: String, arg1: Array[AnyRef]): Struct

    Definition Classes
    WrappedConnection → Connection
  21. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def getAutoCommit(): Boolean

    Definition Classes
    WrappedConnection → Connection
  25. def getCatalog(): String

    Definition Classes
    WrappedConnection → Connection
  26. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  27. def getClientInfo(arg0: String): String

    Definition Classes
    WrappedConnection → Connection
  28. def getClientInfo(): Properties

    Definition Classes
    WrappedConnection → Connection
  29. def getHoldability(): Int

    Definition Classes
    WrappedConnection → Connection
  30. def getMetaData(): DatabaseMetaData

    Definition Classes
    WrappedConnection → Connection
  31. def getNetworkTimeout(): Int

    Definition Classes
    WrappedConnection → Connection
  32. def getSchema(): String

    Definition Classes
    WrappedConnection → Connection
  33. def getTransactionIsolation(): Int

    Definition Classes
    WrappedConnection → Connection
  34. def getTypeMap(): Map[String, Class[_]]

    Definition Classes
    WrappedConnection → Connection
  35. def getWarnings(): SQLWarning

    Definition Classes
    WrappedConnection → Connection
  36. def hashCode(): Int

    Definition Classes
    WrapperWrapping → AnyRef → Any
  37. final val inner: Connection

    Definition Classes
    WrappedConnectionWrapperWrapping
  38. def isClosed(): Boolean

    Definition Classes
    WrappedConnection → Connection
  39. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  40. def isReadOnly(): Boolean

    Definition Classes
    WrappedConnection → Connection
  41. def isValid(arg0: Int): Boolean

    Definition Classes
    WrappedConnection → Connection
  42. def isWrapperFor(clazz: Class[_]): Boolean

    Definition Classes
    WrapperWrapping → Wrapper
  43. def nativeSQL(arg0: String): String

    Definition Classes
    WrappedConnection → Connection
  44. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  47. def prepareCall(arg0: String): CallableStatement

    Definition Classes
    WrappedConnection → Connection
  48. def prepareCall(arg0: String, arg1: Int, arg2: Int): CallableStatement

    Definition Classes
    WrappedConnection → Connection
  49. def prepareCall(arg0: String, arg1: Int, arg2: Int, arg3: Int): CallableStatement

    Definition Classes
    WrappedConnection → Connection
  50. def prepareStatement(arg0: String): PreparedStatement

    Definition Classes
    WrappedConnection → Connection
  51. def prepareStatement(arg0: String, arg1: Int, arg2: Int): PreparedStatement

    Definition Classes
    WrappedConnection → Connection
  52. def prepareStatement(arg0: String, arg1: Int, arg2: Int, arg3: Int): PreparedStatement

    Definition Classes
    WrappedConnection → Connection
  53. def prepareStatement(arg0: String, arg1: Int): PreparedStatement

    Definition Classes
    WrappedConnection → Connection
  54. def prepareStatement(arg0: String, arg1: Array[Int]): PreparedStatement

    Definition Classes
    WrappedConnection → Connection
  55. def prepareStatement(arg0: String, arg1: Array[String]): PreparedStatement

    Definition Classes
    WrappedConnection → Connection
  56. def releaseSavepoint(arg0: Savepoint): Unit

    Definition Classes
    WrappedConnection → Connection
  57. def rollback(): Unit

    Definition Classes
    WrappedConnection → Connection
  58. def rollback(arg0: Savepoint): Unit

    Definition Classes
    WrappedConnection → Connection
  59. def setAutoCommit(arg0: Boolean): Unit

    Definition Classes
    WrappedConnection → Connection
  60. def setCatalog(arg0: String): Unit

    Definition Classes
    WrappedConnection → Connection
  61. def setClientInfo(arg0: String, arg1: String): Unit

    Definition Classes
    WrappedConnection → Connection
  62. def setClientInfo(arg0: Properties): Unit

    Definition Classes
    WrappedConnection → Connection
  63. def setHoldability(arg0: Int): Unit

    Definition Classes
    WrappedConnection → Connection
  64. def setNetworkTimeout(arg0: Executor, arg1: Int): Unit

    Definition Classes
    WrappedConnection → Connection
  65. def setReadOnly(arg0: Boolean): Unit

    Definition Classes
    WrappedConnection → Connection
  66. def setSavepoint(): Savepoint

    Definition Classes
    WrappedConnection → Connection
  67. def setSavepoint(arg0: String): Savepoint

    Definition Classes
    WrappedConnection → Connection
  68. def setSchema(arg0: String): Unit

    Definition Classes
    WrappedConnection → Connection
  69. def setTransactionIsolation(arg0: Int): Unit

    Definition Classes
    WrappedConnection → Connection
  70. def setTypeMap(arg0: Map[String, Class[_]]): Unit

    Definition Classes
    WrappedConnection → Connection
  71. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  72. def toString(): String

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

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from WrapperWrapping[Connection]

Inherited from Connection

Inherited from AutoCloseable

Inherited from Wrapper

Inherited from AnyRef

Inherited from Any

Ungrouped