Class: Sequel::SQL::CaseExpression

Inherits:
GenericExpression show all
Defined in:
lib/sequel_core/sql.rb

Overview

Represents an SQL CASE expression, used for conditions.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from ComplexExpressionMethods

#extract, #sql_boolean, #sql_number, #sql_string

Methods included from StringMethods

#ilike, #like

Methods included from BooleanMethods

#~

Methods included from OrderMethods

#asc, #desc

Methods included from CastMethods

#cast, #cast_numeric, #cast_string

Methods included from AliasMethods

#as

Methods inherited from Expression

#lit

Constructor Details

#initialize(conditions, default) ⇒ CaseExpression

Create an object with the given conditions and default value.

Raises:



493
494
495
496
# File 'lib/sequel_core/sql.rb', line 493

def initialize(conditions, default)
  raise(Sequel::Error, 'CaseExpression conditions must be an array with all_two_pairs') unless Array === conditions and conditions.all_two_pairs?
  @conditions, @default = conditions, default
end

Instance Attribute Details

#conditionsObject (readonly)

An array of all two pairs with the first element specifying the condition and the second element specifying the result.



486
487
488
# File 'lib/sequel_core/sql.rb', line 486

def conditions
  @conditions
end

#defaultObject (readonly)

The default value if no conditions are true



489
490
491
# File 'lib/sequel_core/sql.rb', line 489

def default
  @default
end

Instance Method Details

#to_s(ds) ⇒ Object

Delegate the creation of the resulting SQL to the given dataset, since it may be database dependent.



500
501
502
# File 'lib/sequel_core/sql.rb', line 500

def to_s(ds)
  ds.case_expression_sql(self)
end