CommandProvider

ldbc.statement.Limit.CommandProvider
transparent trait CommandProvider

Attributes

Source
Limit.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Delete[A]
class C[A]
Self type

Members list

Value members

Concrete methods

def limit(length: Long): (Encoder[Long]) ?=> C

A method for setting the LIMIT condition in a UPDATE/DELETE statement.

A method for setting the LIMIT condition in a UPDATE/DELETE statement.

 TableQuery[City]
   .delete
   .limit(10)

Value parameters

length

The number of rows to return.

Attributes

Source
Limit.scala