Expression

ldbc.statement.Expression
See theExpression companion object
sealed trait Expression

Trait for the syntax of expressions available in MySQL.

SEE: https://dev.mysql.com/doc/refman/8.0/en/expressions.html

Attributes

Companion
object
Source
Expression.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def flag: String

Formula to determine

Formula to determine

Attributes

Source
Expression.scala

Trait to allow values to be set in PreparedStatement with only index by generating them from Parameter.

Trait to allow values to be set in PreparedStatement with only index by generating them from Parameter.

Attributes

Source
Expression.scala

Statement of the expression to be judged

Statement of the expression to be judged

Attributes

Source
Expression.scala

Concrete methods

def &&(other: Expression): Expression

Attributes

Source
Expression.scala
def and(other: Expression): Expression

Methods for combining expressions. Both conditions must be positive for the expression to be combined with this method.

Methods for combining expressions. Both conditions must be positive for the expression to be combined with this method.

Value parameters

other

Right side of combined expression

Attributes

Source
Expression.scala
def or(other: Expression): Expression

A method for combining expressions. The expressions combined with this method must have one of the conditions be positive.

A method for combining expressions. The expressions combined with this method must have one of the conditions be positive.

Value parameters

other

Right side of combined expression

Attributes

Source
Expression.scala
def xor(other: Expression): Expression

A method for combining expressions. The expressions combined with this method must be positive either individually or in one of the combined conditions.

A method for combining expressions. The expressions combined with this method must be positive either individually or in one of the combined conditions.

Value parameters

other

Right side of combined expression

Attributes

Source
Expression.scala
def ||(other: Expression): Expression

Attributes

Source
Expression.scala