c

org.squeryl.dsl.QueryDsl

ManyToManyRelationImpl

class ManyToManyRelationImpl[L, R, A] extends Table[A] with ManyToManyRelation[L, R, A]

Self Type
ManyToManyRelationImpl[L, R, A]
Source
QueryDsl.scala
Linear Supertypes
ManyToManyRelation[L, R, A], Relation[L, R], Table[A], View[A], Queryable[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ManyToManyRelationImpl
  2. ManyToManyRelation
  3. Relation
  4. Table
  5. View
  6. Queryable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ManyToManyRelationImpl(leftTable: Table[L], rightTable: Table[R], aClass: Class[A], f: (L, R, A) => (EqualityExpression, EqualityExpression), schema: Schema, nameOverride: Option[String], kedL: KeyedEntityDef[L, _], kedR: KeyedEntityDef[R, _], kedA: KeyedEntityDef[A, _])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val _setPersisted: (A) => Unit
    Attributes
    protected
    Definition Classes
    View
  5. def allRows(implicit dsl: QueryDsl): Iterable[A]
    Definition Classes
    View
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def delete[K](k: K)(implicit ked: KeyedEntityDef[A, K], dsl: QueryDsl, toCanLookup: (K) => CanLookup): Boolean
    Definition Classes
    Table
  9. def delete(q: Query[A]): Int
    Definition Classes
    Table
  10. def deleteWhere(whereClause: (A) => LogicalBoolean)(implicit dsl: QueryDsl): Int
    Definition Classes
    Table
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. def forceUpdate(o: Iterable[A])(implicit ked: KeyedEntityDef[A, _]): Unit
    Definition Classes
    Table
  15. def forceUpdate[K](o: A)(implicit ked: KeyedEntityDef[A, _]): AnyRef

    Updates without any Optimistic Concurrency Control check

    Updates without any Optimistic Concurrency Control check

    Definition Classes
    Table
    Exceptions thrown

    SquerylSQLException When a database error occurs or the update does not result in 1 row

  16. def get[K](k: K)(implicit ked: KeyedEntityDef[A, K], dsl: QueryDsl, toCanLookup: (K) => CanLookup): A

    Will throw an exception if the given key (k) returns no row.

    Will throw an exception if the given key (k) returns no row.

    Definition Classes
    View
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def insert(e: Iterable[A]): Unit
    Definition Classes
    Table
  20. def insert(t: A): A

    Definition Classes
    Table
    Exceptions thrown

    SquerylSQLException When a database error occurs or the insert does not result in 1 row

  21. def insertOrUpdate(o: A)(implicit ked: KeyedEntityDef[A, _]): A

    Definition Classes
    Table
    Exceptions thrown

    SquerylSQLException When a database error occurs or the operation does not result in 1 row

  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. val ked: Option[KeyedEntityDef[A, _]]
    Definition Classes
    View
  24. def left(leftSideMember: L): Query[R] with ManyToMany[R, A]
  25. val leftForeignKeyDeclaration: ForeignKeyDeclaration
  26. def leftStateful(leftSide: L): StatefulManyToMany[R, A]
    Definition Classes
    ManyToManyRelation
  27. val leftTable: Table[L]
    Definition Classes
    ManyToManyRelationImplRelation
  28. def lookup[K](k: K)(implicit ked: KeyedEntityDef[A, K], dsl: QueryDsl, toCanLookup: (K) => CanLookup): Option[A]
    Definition Classes
    View
  29. def name: String
    Definition Classes
    ViewQueryable
  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. val posoMetaData: PosoMetaData[A]
    Definition Classes
    View
  34. def prefix: Option[String]
    Definition Classes
    View
  35. def prefixedName: String
    Definition Classes
    View
  36. def prefixedPrefixedName(s: String): String

    Suppose you have : prefix.MyTable myTable.prefixedPrefixedName("z") will yield : prefix.zMyTable used for creating names for objects derived from a table, ex.: a sequence

    Suppose you have : prefix.MyTable myTable.prefixedPrefixedName("z") will yield : prefix.zMyTable used for creating names for objects derived from a table, ex.: a sequence

    Definition Classes
    View
  37. def right(rightSideMember: R): Query[L] with ManyToMany[L, A]
  38. val rightForeignKeyDeclaration: ForeignKeyDeclaration
  39. def rightStateful(rightSide: R): StatefulManyToMany[L, A]
    Definition Classes
    ManyToManyRelation
  40. val rightTable: Table[R]
    Definition Classes
    ManyToManyRelationImplRelation
  41. val schema: Schema
    Definition Classes
    Table
  42. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  43. def thisTable: ManyToManyRelationImpl[L, R, A]
  44. def toString(): String
    Definition Classes
    AnyRef → Any
  45. def update(s: (A) => UpdateStatement): Int
    Definition Classes
    Table
  46. def update(o: Iterable[A])(implicit ked: KeyedEntityDef[A, _]): Unit
    Definition Classes
    Table
  47. def update(o: A)(implicit ked: KeyedEntityDef[A, _]): Unit

    Definition Classes
    Table
    Exceptions thrown

    SquerylSQLException When a database error occurs or the update does not result in 1 row

  48. def viewExpressionNode: ViewExpressionNode[A]
    Definition Classes
    View
  49. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  50. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  51. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  52. def where(whereClauseFunctor: (A) => LogicalBoolean)(implicit dsl: QueryDsl): Query[A]
    Definition Classes
    Queryable

Inherited from ManyToManyRelation[L, R, A]

Inherited from Relation[L, R]

Inherited from Table[A]

Inherited from View[A]

Inherited from Queryable[A]

Inherited from AnyRef

Inherited from Any

Ungrouped