scala.slick.jdbc

UnmanagedSession

class UnmanagedSession extends jdbc.JdbcBackend.SessionDef

A JDBC Session which is not managed by Slick. You can use this to wrap an existing JDBC Connection. Override 'database' and 'performRollback' if applicable.

Linear Supertypes
JdbcBackend.SessionDef, JdbcBackend.SessionDef, Closeable, AutoCloseable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. UnmanagedSession
  2. SessionDef
  3. SessionDef
  4. Closeable
  5. AutoCloseable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new UnmanagedSession(conn: 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 asDynamicSession[T](f: ⇒ T): T

    Use this Session as the dynamicSession for running the supplied thunk.

    Use this Session as the dynamicSession for running the supplied thunk.

    Definition Classes
    SessionDef
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. lazy val capabilities: JdbcBackend.DatabaseCapabilities

    Definition Classes
    UnmanagedSessionSessionDef
  9. def clone(): AnyRef

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

    Close this Session.

    Close this Session.

    Definition Classes
    UnmanagedSessionSessionDefSessionDef → Closeable → AutoCloseable
  11. val conn: Connection

    Definition Classes
    UnmanagedSessionSessionDef
  12. final def createStatement(defaultType: ResultSetType = ResultSetType.ForwardOnly, defaultConcurrency: ResultSetConcurrency = ResultSetConcurrency.ReadOnly, defaultHoldability: ResultSetHoldability = ResultSetHoldability.Default): Statement

    Definition Classes
    SessionDef
  13. def database: JdbcBackend.Database

    Definition Classes
    UnmanagedSessionSessionDef
  14. var doRollback: Boolean

    Attributes
    protected
  15. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def forParameters(rsType: ResultSetType = resultSetType, rsConcurrency: ResultSetConcurrency = resultSetConcurrency, rsHoldability: ResultSetHoldability = resultSetHoldability): JdbcBackend.Session

    Definition Classes
    SessionDef
  19. def force(): Unit

    Force an actual database session to be opened.

    Force an actual database session to be opened. Slick sessions are lazy, so you do not get a real database connection until you need it or you call force() on the session.

    Definition Classes
    SessionDefSessionDef
  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. var inTransaction: Boolean

    Attributes
    protected
  23. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  24. def loggingStatement(st: Statement): Statement

    Attributes
    protected
    Definition Classes
    SessionDef
  25. lazy val metaData: DatabaseMetaData

    Definition Classes
    UnmanagedSessionSessionDef
  26. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  29. var open: Boolean

    Attributes
    protected
  30. def performRollback(): Unit

  31. final def prepareInsertStatement(sql: String, columnIndexes: Array[Int]): PreparedStatement

    Definition Classes
    SessionDef
  32. final def prepareInsertStatement(sql: String, columnNames: Array[String] = new Array[String](0)): PreparedStatement

    Definition Classes
    SessionDef
  33. final def prepareStatement(sql: String, defaultType: ResultSetType = ResultSetType.ForwardOnly, defaultConcurrency: ResultSetConcurrency = ResultSetConcurrency.ReadOnly, defaultHoldability: ResultSetHoldability = ResultSetHoldability.Default): PreparedStatement

    Definition Classes
    SessionDef
  34. def resultSetConcurrency: ResultSetConcurrency

    Definition Classes
    SessionDef
  35. def resultSetHoldability: ResultSetHoldability

    Definition Classes
    SessionDef
  36. def resultSetType: ResultSetType

    Definition Classes
    SessionDef
  37. def rollback(): Unit

    Call this method within a withTransaction call to roll back the current transaction after withTransaction returns.

    Call this method within a withTransaction call to roll back the current transaction after withTransaction returns.

    Definition Classes
    UnmanagedSessionSessionDefSessionDef
  38. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  39. def toString(): String

    Definition Classes
    AnyRef → Any
  40. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def withPreparedInsertStatement[T](sql: String, columnIndexes: Array[Int])(f: (PreparedStatement) ⇒ T): T

    Definition Classes
    SessionDef
  44. final def withPreparedInsertStatement[T](sql: String, columnNames: Array[String] = new Array[String](0))(f: (PreparedStatement) ⇒ T): T

    Definition Classes
    SessionDef
  45. final def withPreparedStatement[T](sql: String, defaultType: ResultSetType = ResultSetType.ForwardOnly, defaultConcurrency: ResultSetConcurrency = ResultSetConcurrency.ReadOnly, defaultHoldability: ResultSetHoldability = ResultSetHoldability.Default)(f: (PreparedStatement) ⇒ T): T

    Definition Classes
    SessionDef
  46. final def withStatement[T](defaultType: ResultSetType = ResultSetType.ForwardOnly, defaultConcurrency: ResultSetConcurrency = ResultSetConcurrency.ReadOnly, defaultHoldability: ResultSetHoldability = ResultSetHoldability.Default)(f: (Statement) ⇒ T): T

    Definition Classes
    SessionDef
  47. def withTransaction[T](f: ⇒ T): T

    Run the supplied function within a transaction.

    Run the supplied function within a transaction. If the function throws an Exception or the session's rollback() method is called, the transaction is rolled back, otherwise it is commited when the function returns.

    Definition Classes
    UnmanagedSessionSessionDefSessionDef

Inherited from JdbcBackend.SessionDef

Inherited from JdbcBackend.SessionDef

Inherited from Closeable

Inherited from AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped