Where

ldbc.statement.Where
See theWhere companion trait
object Where

Attributes

Companion
trait
Source
Where.scala
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
Where.type

Members list

Type members

Classlikes

case class C[A](table: A, statement: String, params: List[Dynamic], isFirst: Boolean) extends Where[A], Command, CommandProvider

A model for constructing write-only query WHERE statements in MySQL.

A model for constructing write-only query WHERE statements in MySQL.

Type parameters

A

The type of Table. in the case of Join, it is a Tuple of type Table.

Value parameters

isFirst

If True, this condition is added first, so the specified join condition is ignored and a WHERE statement is started.

params

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

statement

SQL statement string

table

Trait for generating SQL table information.

Attributes

Source
Where.scala
Supertypes
trait Serializable
trait Product
trait Equals
trait Command
trait SQL
trait Where[A]
class Object
trait Matchable
class Any
Show all
case class Q[A, B](table: A, columns: Column[B], statement: String, params: List[Dynamic], isFirst: Boolean) extends Where[A], Query[A, B], QueryProvider[A, B]

A model for constructing read-only query WHERE statements in MySQL.

A model for constructing read-only query WHERE statements in MySQL.

Type parameters

A

The type of Table. in the case of Join, it is a Tuple of type Table.

B

Scala types to be converted by Decoder

Value parameters

columns

Union-type column list

isFirst

If True, this condition is added first, so the specified join condition is ignored and a WHERE statement is started.

params

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

statement

SQL statement string

table

Trait for generating SQL table information.

Attributes

Source
Where.scala
Supertypes
trait Serializable
trait Product
trait Equals
trait QueryProvider[A, B]
trait Query[A, B]
trait SQL
trait Where[A]
class Object
trait Matchable
class Any
Show all

Inherited and Abstract types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
Source
Mirror.scala

The name of the type

The name of the type

Attributes

Inherited from:
Mirror
Source
Mirror.scala