Limit

ldbc.query.builder.statement.Limit
See theLimit companion trait
object Limit

Attributes

Companion
trait
Source
Limit.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Limit.type

Members list

Type members

Classlikes

case class C(statement: String, params: List[Dynamic]) extends Limit, Command

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

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

Value parameters

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

Attributes

Source
Limit.scala
Supertypes
trait Serializable
trait Product
trait Equals
trait Command
trait SQL
trait Limit
class Object
trait Matchable
class Any
Show all
transparent trait CommandProvider

Attributes

Source
Limit.scala
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class C[P]
Self type
case class Q[T](statement: String, params: List[Dynamic], decoder: Decoder[T]) extends Limit, Query[T]

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

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

Type parameters

T

Scala types to be converted by Decoder

Value parameters

decoder

Decoder for converting SQL data to Scala data

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

Attributes

Source
Limit.scala
Supertypes
trait Serializable
trait Product
trait Equals
trait Query[T]
trait SQL
trait Limit
class Object
trait Matchable
class Any
Show all
transparent trait QueryProvider[T]

Attributes

Source
Limit.scala
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Q[P, C, D]
Self type
Query[T]