trait JdbcActionContext extends BasicActionContext
- Alphabetic
- By Inheritance
- JdbcActionContext
- BasicActionContext
- ActionContext
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
val
useSameThread: Boolean
Whether to run all operations on the current thread or schedule them normally on the appropriate ExecutionContext.
Whether to run all operations on the current thread or schedule them normally on the appropriate ExecutionContext. This is used by the blocking API.
- Attributes
- protected[BasicBackend]
- Definition Classes
- BasicActionContext
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+(other: String): String
- Implicit
- This member is added by an implicit conversion from JdbcActionContext to any2stringadd[JdbcActionContext] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
-
def
->[B](y: B): (JdbcActionContext, B)
- Implicit
- This member is added by an implicit conversion from JdbcActionContext to ArrowAssoc[JdbcActionContext] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
def
connection: Connection
The current JDBC Connection
-
def
ensuring(cond: (JdbcActionContext) ⇒ Boolean, msg: ⇒ Any): JdbcActionContext
- Implicit
- This member is added by an implicit conversion from JdbcActionContext to Ensuring[JdbcActionContext] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (JdbcActionContext) ⇒ Boolean): JdbcActionContext
- Implicit
- This member is added by an implicit conversion from JdbcActionContext to Ensuring[JdbcActionContext] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): JdbcActionContext
- Implicit
- This member is added by an implicit conversion from JdbcActionContext to Ensuring[JdbcActionContext] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): JdbcActionContext
- Implicit
- This member is added by an implicit conversion from JdbcActionContext to Ensuring[JdbcActionContext] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from JdbcActionContext to StringFormat[JdbcActionContext] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
isPinned: Boolean
Check if the session is pinned.
Check if the session is pinned. May only be called from a synchronous action context.
- Definition Classes
- ActionContext
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
pin: Unit
Pin the current session.
Pin the current session. Multiple calls to
pinmay be nested. The same number of calls tounpinis required in order to mark the session as not pinned anymore. A pinned session will not be released at the end of a primitive database action. Instead, the same pinned session is passed to all subsequent actions until it is unpinned. Note that pinning does not force an actual database connection to be opened. This still happens on demand. May only be called from a synchronous action context.- Definition Classes
- ActionContext
- def popStatementParameters: Unit
- def pushStatementParameters(p: StatementParameters): Unit
-
def
session: Session
- Definition Classes
- JdbcActionContext → BasicActionContext
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
unpin: Unit
Unpin this session once.
Unpin this session once. May only be called from a synchronous action context.
- Definition Classes
- ActionContext
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
→[B](y: B): (JdbcActionContext, B)
- Implicit
- This member is added by an implicit conversion from JdbcActionContext to ArrowAssoc[JdbcActionContext] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated
- Deprecated

edit this text on github
Scala Language-Integrated Connection Kit
This is the API documentation for the Slick database library. It should be used as an additional resource to the user manual.
Further documentation for Slick can be found on the documentation pages.
To the slick package list...