gda.sql_select_order

Module for [SqlSelectOrder] class

Types 1

classSqlSelectOrder

This structure represents the ordering of a SELECT statement.

Fields
Methods
void * _cPtr()
gda.sql_expr.SqlExpr expr() @propertyGet `expr` field. Returns: expression to order on
void expr(gda.sql_expr.SqlExpr propval) @propertySet `expr` field. Params: propval = expression to order on
bool asc() @propertyGet `asc` field. Returns: TRUE is ordering is ascending
void asc(bool propval) @propertySet `asc` field. Params: propval = TRUE is ordering is ascending
string collationName() @propertyGet `collationName` field. Returns: name of the collation to use for ordering
void collationName(string propval) @propertySet `collationName` field. Params: propval = name of the collation to use for ordering
string serialize()Creates a new string description of the ORDER BY clause used in a SELECT statement. Returns: a new string with the description of the ORDER BY or "null" in case order is invalid.
Constructors
this(void * ptr, Flag!"Take" take)