Clause.Limit

Indicates the limit of rows to be returned. It can be single using the 1-field constructor or complex (lower and upper limit) using the 2-field constrcutor.

Constructors

this
this(size_t lower, size_t upper)
Undocumented in source.
this
this(size_t limit)
Undocumented in source.

Members

Variables

lower
size_t lower;
upper
size_t upper;
Undocumented in source.

Examples

Limit(1);
Limit(10, 20);

Meta