object ResultSetType
- Source
- ResultSetType.scala
- Alphabetic
- By Inheritance
- ResultSetType
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- case object Auto extends ResultSetType with Product with Serializable
The current result set type of the JDBC driver
- case object ForwardOnly extends ResultSetType with Product with Serializable
Represents a result set type that only allows result sets to be read sequentially (i.e.
Represents a result set type that only allows result sets to be read sequentially (i.e. the cursor may only move forward).
- case object ScrollInsensitive extends ResultSetType with Product with Serializable
Represents a result set type that allows result sets to be navigated in a non-linear way while keeping the original data in the result set intact.
- case object ScrollSensitive extends ResultSetType with Product with Serializable
Represents a result set type that allows result sets to be navigated in a non-linear way, and changes in the underlying data to be observed.
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...