Packages

object ResultSetType

Source
ResultSetType.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ResultSetType
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. case object Auto extends ResultSetType with Product with Serializable

    The current result set type of the JDBC driver

  2. 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).

  3. 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.

  4. 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.