c

slick.jdbc.JdbcActionComponent

JdbcActionExtensionMethods

class JdbcActionExtensionMethods[E <: Effect, R, S <: NoStream] extends AnyRef

Source
JdbcActionComponent.scala
Linear Supertypes
AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JdbcActionExtensionMethods
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new JdbcActionExtensionMethods(a: DBIOAction[R, S, E])

Value Members

  1. def transactionally: DBIOAction[R, S, E with Transactional]

    Run this Action transactionally.

    Run this Action transactionally. This does not guarantee failures to be atomic in the presence of error handling combinators. If multiple transactionally combinators are nested, only the outermost one will be backed by an actual database transaction. Depending on the outcome of running the Action it surrounds, the transaction is committed if the wrapped Action succeeds, or rolled back if the wrapped Action fails. When called on a slick.dbio.SynchronousDatabaseAction, this combinator gets fused into the action.

  2. def withStatementParameters(rsType: ResultSetType = null, rsConcurrency: ResultSetConcurrency = null, rsHoldability: ResultSetHoldability = null, statementInit: (Statement) => Unit = null, fetchSize: Int = 0): DBIOAction[R, S, E]

    Run this Action with the given statement parameters.

    Run this Action with the given statement parameters. Any unset parameter will use the current value. The following parameters can be set:

    rsType

    The JDBC ResultSetType

    rsConcurrency

    The JDBC ResultSetConcurrency

    rsHoldability

    The JDBC ResultSetHoldability

    statementInit

    A function which is run on every Statement or PreparedStatement directly after creating it. This can be used to set additional statement parameters (e.g. setQueryTimeout). When multiple withStatementParameters Actions are nested, all init functions are run, starting with the outermost one.

    fetchSize

    The fetch size for all statements or 0 for the default.

  3. def withTransactionIsolation(ti: TransactionIsolation): DBIOAction[R, S, E]

    Run this Action with the specified transaction isolation level.

    Run this Action with the specified transaction isolation level. This should be used around the outermost transactionally Action. The semantics of using it inside a transaction are database-dependent. It does not create a transaction by itself but it pins the session.