Class: Sequel::SQL::Cast
- Inherits:
-
GenericExpression
- Object
- Expression
- GenericExpression
- Sequel::SQL::Cast
- Defined in:
- lib/sequel/sql.rb
Overview
Represents a cast of an SQL expression to a specific type.
Instance Attribute Summary collapse
-
#expr ⇒ Object
readonly
The expression to cast.
-
#type ⇒ Object
readonly
The type to which to cast the expression.
Instance Method Summary collapse
-
#initialize(expr, type) ⇒ Cast
constructor
Set the attributes to the given arguments.
-
#to_s(ds) ⇒ Object
Delegate the creation of the resulting SQL to the given dataset, since it may be database dependent.
Methods included from StringMethods
Methods included from BooleanMethods
Methods included from ComplexExpressionMethods
#extract, #sql_boolean, #sql_number, #sql_string
Methods included from OrderMethods
Methods included from CastMethods
#cast, #cast_as, #cast_numeric, #cast_string
Methods included from AliasMethods
Methods inherited from Expression
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
#expr ⇒ Object (readonly)
The expression to cast
503 504 505 |
# File 'lib/sequel/sql.rb', line 503 def expr @expr end |
#type ⇒ Object (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 |