package h2

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class AnalyzeAuto(changes: Int = 0) extends H2Option with Product with Serializable
  2. case class AnalyzeSample(sample: Int = 10000) extends H2Option with Product with Serializable
  3. case class AutoServerPort(port: Int) extends H2Option with Product with Serializable
  4. case class CacheSize(sizeInKb: Long) extends H2Option with Product with Serializable
  5. case class CacheType(cacheType: String, soft: Boolean = false) extends H2Option with Product with Serializable
  6. case class CloseDelay(delay: Long) extends H2Option with Product with Serializable
  7. case class DbCloseOnExit(close: Boolean = true) extends H2Option with Product with Serializable
  8. trait H2ConnectionMode extends AnyRef
  9. abstract class H2Datastore extends SQLDatastore
  10. case class H2Embedded(file: File, options: H2Option*) extends H2ConnectionMode with Product with Serializable
  11. case class H2Function(datastore: H2Datastore, obj: AnyRef, methodName: String, functionName: Option[String] = None) extends Product with Serializable
  12. case class H2Memory(name: String, options: H2Option*) extends H2ConnectionMode with Product with Serializable
  13. class H2Option extends AnyRef

    See http://www.h2database.com/javadoc/org/h2/constant/DbSettings.html for most of the options available.

  14. class Triggers extends TableProperty

    Triggers property can be added to a table to specify that it will support triggers.

Value Members

  1. object AliasColumnName extends H2Option
  2. object AutoServer extends H2Option
  3. object DatabaseToLower extends H2Option
  4. object DatabaseToUpper extends H2Option
  5. object H2ConnectionMode
  6. object MVStore extends H2Option
  7. object MultiThreaded extends H2Option
  8. object Triggers

    Only triggers on Insert, Update, and Delete.

    Only triggers on Insert, Update, and Delete. This explicitly excludes Select. To configure different triggers create a new instance.

Ungrouped