Class Sequel::SQL::Cast
In: lib/sequel/sql.rb
Parent: GenericExpression

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

Methods

new  

Attributes

expr  [R]  The expression to cast
type  [R]  The type to which to cast the expression

Public Class methods

Set the attributes to the given arguments

[Source]

     # File lib/sequel/sql.rb, line 494
494:       def initialize(expr, type)
495:         @expr = expr
496:         @type = type
497:       end

[Validate]