slick.driver

JdbcActionComponent

trait JdbcActionComponent extends SqlActionComponent

Self Type
JdbcDriver
Source
JdbcActionComponent.scala
Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JdbcActionComponent
  2. SqlActionComponent
  3. RelationalActionComponent
  4. BasicActionComponent
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait CountingInsertActionComposer[U] extends JdbcDriver.InsertActionComposer[U]

    An InsertInvoker that returns the number of affected rows.

  2. class CountingInsertActionComposerImpl[U] extends JdbcDriver.InsertActionComposerImpl[U] with JdbcDriver.CountingInsertActionComposer[U]

    Attributes
    protected
  3. type DeleteActionExtensionMethods = JdbcDriver.DeleteActionExtensionMethodsImpl

  4. class DeleteActionExtensionMethodsImpl extends AnyRef

  5. type DriverAction[+R, +S <: NoStream, -E <: Effect] = FixedSqlAction[R, S, E]

  6. trait InsertActionComposer[U] extends JdbcDriver.SimpleInsertActionComposer[U]

    Extension methods to generate the JDBC-specific insert actions.

  7. class InsertActionComposerImpl[U] extends JdbcDriver.InsertActionComposer[U]

    Attributes
    protected
  8. type InsertActionExtensionMethods[T] = JdbcDriver.CountingInsertActionComposerImpl[T]

  9. trait InsertActionExtensionMethodsImpl[T] extends AnyRef

    Definition Classes
    RelationalActionComponent
  10. trait IntoInsertActionComposer[U, RU] extends JdbcDriver.SimpleInsertActionComposer[U]

    An InsertActionComposer that returns a mapping of the inserted and generated data.

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

  12. class MutatingResultAction[T] extends SynchronousDatabaseAction[Nothing, Streaming[ResultSetMutator[T]], JdbcDriver.Backend, Effect] with JdbcDriver.DriverAction[Nothing, Streaming[ResultSetMutator[T]], Effect]

  13. class PushStatementParameters extends SynchronousDatabaseAction[Unit, NoStream, JdbcDriver.Backend, Effect]

    Attributes
    protected
  14. type QueryActionExtensionMethods[R, S <: NoStream] = JdbcDriver.QueryActionExtensionMethodsImpl[R, S]

  15. class QueryActionExtensionMethodsImpl[R, S <: NoStream] extends JdbcDriver.QueryActionExtensionMethodsImpl[R, S]

  16. trait ReturningInsertActionComposer[U, RU] extends JdbcDriver.InsertActionComposer[U]

    An InsertActionComposer that returns generated keys or other columns.

  17. type SchemaActionExtensionMethods = JdbcDriver.SchemaActionExtensionMethodsImpl

  18. class SchemaActionExtensionMethodsImpl extends JdbcDriver.SchemaActionExtensionMethodsImpl

  19. class SetTransactionIsolation extends SynchronousDatabaseAction[Int, NoStream, JdbcDriver.Backend, Effect]

    Attributes
    protected
  20. trait SimpleInsertActionComposer[U] extends JdbcDriver.InsertActionExtensionMethodsImpl[U]

    Extension methods to generate the JDBC-specific insert actions.

  21. abstract class SimpleJdbcDriverAction[+R] extends SynchronousDatabaseAction[R, NoStream, JdbcDriver.Backend, Effect] with JdbcDriver.DriverAction[R, NoStream, Effect]

  22. type StreamingDriverAction[+R, +T, -E <: Effect] = FixedSqlStreamingAction[R, T, E]

  23. type StreamingQueryActionExtensionMethods[R, T] = JdbcDriver.StreamingQueryActionExtensionMethodsImpl[R, T]

  24. class StreamingQueryActionExtensionMethodsImpl[R, T] extends JdbcDriver.QueryActionExtensionMethodsImpl[R, Streaming[T]] with JdbcDriver.StreamingQueryActionExtensionMethodsImpl[R, T]

  25. type UpdateActionExtensionMethods[T] = JdbcDriver.UpdateActionExtensionMethodsImpl[T]

  26. class UpdateActionExtensionMethodsImpl[T] extends AnyRef

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. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from JdbcActionComponent to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (JdbcActionComponent, B)

    Implicit information
    This member is added by an implicit conversion from JdbcActionComponent to ArrowAssoc[JdbcActionComponent] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. object Commit extends SynchronousDatabaseAction[Unit, NoStream, JdbcDriver.Backend, Effect]

    Attributes
    protected
  9. object PopStatementParameters extends SynchronousDatabaseAction[Unit, NoStream, JdbcDriver.Backend, Effect]

    Attributes
    protected
  10. object Rollback extends SynchronousDatabaseAction[Unit, NoStream, JdbcDriver.Backend, Effect]

    Attributes
    protected
  11. object StartTransaction extends SynchronousDatabaseAction[Unit, NoStream, JdbcDriver.Backend, Effect]

    Attributes
    protected
  12. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  13. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def createDeleteActionExtensionMethods(tree: Node, param: Any): JdbcDriver.DeleteActionExtensionMethods

  15. def createInsertActionExtensionMethods[T](compiled: JdbcDriver.CompiledInsert): JdbcDriver.InsertActionExtensionMethods[T]

  16. def createQueryActionExtensionMethods[R, S <: NoStream](tree: Node, param: Any): JdbcDriver.QueryActionExtensionMethods[R, S]

  17. def createSchemaActionExtensionMethods(schema: JdbcDriver.SchemaDescription): JdbcDriver.SchemaActionExtensionMethods

  18. def createStreamingQueryActionExtensionMethods[R, T](tree: Node, param: Any): JdbcDriver.StreamingQueryActionExtensionMethods[R, T]

  19. def createUpdateActionExtensionMethods[T](tree: Node, param: Any): JdbcDriver.UpdateActionExtensionMethods[T]

  20. def ensuring(cond: (JdbcActionComponent) ⇒ Boolean, msg: ⇒ Any): JdbcActionComponent

    Implicit information
    This member is added by an implicit conversion from JdbcActionComponent to Ensuring[JdbcActionComponent] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: (JdbcActionComponent) ⇒ Boolean): JdbcActionComponent

    Implicit information
    This member is added by an implicit conversion from JdbcActionComponent to Ensuring[JdbcActionComponent] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: Boolean, msg: ⇒ Any): JdbcActionComponent

    Implicit information
    This member is added by an implicit conversion from JdbcActionComponent to Ensuring[JdbcActionComponent] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. def ensuring(cond: Boolean): JdbcActionComponent

    Implicit information
    This member is added by an implicit conversion from JdbcActionComponent to Ensuring[JdbcActionComponent] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  24. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from JdbcActionComponent to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  28. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  30. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  31. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  35. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. def [B](y: B): (JdbcActionComponent, B)

    Implicit information
    This member is added by an implicit conversion from JdbcActionComponent to ArrowAssoc[JdbcActionComponent] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from JdbcActionComponent to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jdbcActionComponent: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from JdbcActionComponent to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jdbcActionComponent: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: JdbcActionComponent

    Implicit information
    This member is added by an implicit conversion from JdbcActionComponent to ArrowAssoc[JdbcActionComponent] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jdbcActionComponent: ArrowAssoc[JdbcActionComponent]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: JdbcActionComponent

    Implicit information
    This member is added by an implicit conversion from JdbcActionComponent to Ensuring[JdbcActionComponent] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (jdbcActionComponent: Ensuring[JdbcActionComponent]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from SqlActionComponent

Inherited from RelationalActionComponent

Inherited from BasicActionComponent

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from JdbcActionComponent to StringAdd

Inherited by implicit conversion any2stringfmt from JdbcActionComponent to StringFormat

Inherited by implicit conversion any2ArrowAssoc from JdbcActionComponent to ArrowAssoc[JdbcActionComponent]

Inherited by implicit conversion any2Ensuring from JdbcActionComponent to Ensuring[JdbcActionComponent]

Ungrouped