class RichConnection extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RichConnection
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RichConnection(conn: Connection)

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  6. val conn: Connection
  7. macro def createBatch[T](proc: (T) => SQLWithArgs): Batch[T]
  8. macro def createMysqlBatch[T](proc: (T) => SQLWithArgs): Batch[T]

    translate the "insert into table set a = ?, b = ?" into "insert into table(a,b) values(?,?)

  9. def eachRow[T](sql: SQLWithArgs)(f: (T) => Unit)(implicit arg0: ResultSetMapper[T]): Unit
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def executeUpdate(stmt: SQLWithArgs): Int
  13. def executeUpdateWithGenerateKey(stmt: SQLWithArgs)(processGenerateKeys: (ResultSet) => Unit = null): Int
  14. def generateKey[T](stmt: SQLWithArgs)(implicit arg0: JdbcValueAccessor[T]): T
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def joinRow2[T1, T2](sql: SQLWithArgs)(implicit arg0: ResultSetMapper[T1], arg1: ResultSetMapper[T2]): Option[(T1, T2)]
  19. def joinRow3[T1, T2, T3](sql: SQLWithArgs)(implicit arg0: ResultSetMapper[T1], arg1: ResultSetMapper[T2], arg2: ResultSetMapper[T3]): Option[(T1, T2, T3)]
  20. def joinRow4[T1, T2, T3, T4](sql: SQLWithArgs)(implicit arg0: ResultSetMapper[T1], arg1: ResultSetMapper[T2], arg2: ResultSetMapper[T3], arg3: ResultSetMapper[T4]): Option[(T1, T2, T3, T4)]
  21. def joinRows2[T1, T2](sql: SQLWithArgs)(implicit arg0: ResultSetMapper[T1], arg1: ResultSetMapper[T2]): List[(T1, T2)]
  22. def joinRows3[T1, T2, T3](sql: SQLWithArgs)(implicit arg0: ResultSetMapper[T1], arg1: ResultSetMapper[T2], arg2: ResultSetMapper[T3]): List[(T1, T2, T3)]
  23. def joinRows4[T1, T2, T3, T4](sql: SQLWithArgs)(implicit arg0: ResultSetMapper[T1], arg1: ResultSetMapper[T2], arg2: ResultSetMapper[T3], arg3: ResultSetMapper[T4]): List[(T1, T2, T3, T4)]
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  27. def queryInt(sql: SQLWithArgs): Int
  28. def row[T](sql: SQLWithArgs)(implicit arg0: ResultSetMapper[T]): Option[T]
  29. def rows[T](sql: SQLWithArgs)(implicit arg0: ResultSetMapper[T]): List[T]
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. def withStatement[T](f: (Statement) => T): T
  36. def withTransaction[T](f: (Connection) => T): T

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped