org.powerscala.datastore.impl.sql

QueryBuilder

case class QueryBuilder(_table: String, _fields: List[String] = immutable.this.Nil, _conditions: List[Condition] = immutable.this.Nil, _groups: List[GroupBy] = immutable.this.Nil, _orders: List[OrderBy] = immutable.this.Nil, _joins: List[Join] = immutable.this.Nil, _limit: Int = -1, _offset: Int = -1) extends Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. QueryBuilder
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new QueryBuilder(_table: String, _fields: List[String] = immutable.this.Nil, _conditions: List[Condition] = immutable.this.Nil, _groups: List[GroupBy] = immutable.this.Nil, _orders: List[OrderBy] = immutable.this.Nil, _joins: List[Join] = immutable.this.Nil, _limit: Int = -1, _offset: Int = -1)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val _conditions: List[Condition]

  7. val _fields: List[String]

  8. val _groups: List[GroupBy]

  9. val _joins: List[Join]

  10. val _limit: Int

  11. val _offset: Int

  12. val _orders: List[OrderBy]

  13. val _table: String

  14. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  15. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. def executeQuery[T](connection: Connection)(f: (ResultSet) ⇒ T): T

  18. def field(name: String): QueryBuilder

  19. def fields(names: String*): QueryBuilder

  20. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  22. def groupBy(field: String): QueryBuilder

  23. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  24. def join(join: Join): QueryBuilder

  25. def limit(value: Int): QueryBuilder

  26. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  29. def offset(value: Int): QueryBuilder

  30. def orderBy(field: String, ascending: Boolean = true): QueryBuilder

  31. def query(): String

  32. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  33. def table(name: String): QueryBuilder

  34. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def where(field: String, value: Any, conditionType: ConditionType = ConditionType.Equal): QueryBuilder

  38. def where(condition: String): QueryBuilder

  39. def where(condition: Condition): QueryBuilder

  40. def whereNotNull(field: String): QueryBuilder

  41. def whereNull(field: String): QueryBuilder

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped