gda.sql_select_order

Module for [SqlSelectOrder] class

Types 1

classSqlSelectOrder

This structure represents the ordering of a SELECT statement.

Fields
Methods
void * _cPtr() nothrow
gda.sql_expr.SqlExpr expr() @property nothrowGet `expr` field. Returns: expression to order on
void expr(gda.sql_expr.SqlExpr propval) @property nothrowSet `expr` field. Params: propval = expression to order on
bool asc() @property nothrowGet `asc` field. Returns: TRUE is ordering is ascending
void asc(bool propval) @property nothrowSet `asc` field. Params: propval = TRUE is ordering is ascending
string collationName() @property nothrowGet `collationName` field. Returns: name of the collation to use for ordering
void collationName(string propval) @property nothrowSet `collationName` field. Params: propval = name of the collation to use for ordering
string serialize() nothrowCreates 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)