Class: Sequel::SQL::Cast

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

Overview

Represents a cast of an SQL expression to a specific type.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from StringMethods

#ilike, #like

Methods included from BooleanMethods

#~

Methods included from ComplexExpressionMethods

#extract, #sql_boolean, #sql_number, #sql_string

Methods included from OrderMethods

#asc, #desc

Methods included from CastMethods

#cast, #cast_as, #cast_numeric, #cast_string

Methods included from AliasMethods

#as

Methods inherited from Expression

#lit

Constructor Details

#initialize(expr, type) ⇒ Cast

Set the attributes to the given arguments



509
510
511
512
# File 'lib/sequel/sql.rb', line 509

def initialize(expr, type)
  @expr = expr
  @type = type
end

Instance Attribute Details

#exprObject (readonly)

The expression to cast



503
504
505
# File 'lib/sequel/sql.rb', line 503

def expr
  @expr
end

#typeObject (readonly)

The type to which to cast the expression



506
507
508
# File 'lib/sequel/sql.rb', line 506

def type
  @type
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.



516
517
518
# File 'lib/sequel/sql.rb', line 516

def to_s(ds)
  ds.cast_sql(expr, type)
end