Where

ldbc.query.builder.statement.Where
See theWhere companion object
trait Where[P <: Product]

A trait for constructing WHERE statements in MySQL.

Type parameters

P

Base trait for all products

Attributes

Companion
object
Source
Where.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class C[P]
class Q[P, C, D]

Members list

Type members

Types

type Self

Attributes

Source
Where.scala

Value members

Abstract methods

A list of Traits that generate values from Parameter, allowing PreparedStatement to be set to a value by index only.

A list of Traits that generate values from Parameter, allowing PreparedStatement to be set to a value by index only.

Attributes

Source
Where.scala

SQL statement string

SQL statement string

Attributes

Source
Where.scala
def table: Table[P]

Trait for generating SQL table information.

Trait for generating SQL table information.

Attributes

Source
Where.scala

Concrete methods

def &&(func: (Table[P]) => Expression): Self

Attributes

Source
Where.scala
def and(func: (Table[P]) => Expression): Self

Attributes

Source
Where.scala
def or(func: (Table[P]) => Expression): Self

Attributes

Source
Where.scala
def xor(func: (Table[P]) => Expression): Self

Attributes

Source
Where.scala
def ||(func: (Table[P]) => Expression): Self

Attributes

Source
Where.scala