object InsertCompiler

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

Type Members

  1. trait Mode extends (FieldSymbol) => Boolean

    Determines which columns to include in the Insert and mapping nodes created by InsertCompiler.

Value Members

  1. case object AllColumns extends Mode with Product with Serializable

    Include all columns.

    Include all columns. For use in forced inserts and merges.

  2. case object NonAutoInc extends Mode with Product with Serializable

    Include only non-AutoInc columns.

    Include only non-AutoInc columns. For use in standard (soft) inserts.

  3. case object PrimaryKeys extends Mode with Product with Serializable

    Include only primary keys.

    Include only primary keys. For use in the insertOrUpdate emulation.