Methods

Class/Module Index [+]

Quicksearch

Sequel::SQL::OrderMethods

Methods that create OrderedExpressions, used for sorting by columns or more complex expressions.

Public Instance Methods

asc() click to toggle source

Mark the receiving SQL column as sorting in an ascending fashion (generally a no-op).

# File lib/sequel/sql.rb, line 370
def asc
  OrderedExpression.new(self, false)
end
desc() click to toggle source

Mark the receiving SQL column as sorting in a descending fashion.

# File lib/sequel/sql.rb, line 365
def desc
  OrderedExpression.new(self)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.