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

Represents constants or psuedo-constants (e.g. CURRENT_DATE) in SQL.

Methods

new  

Public Class methods

Create an object with the given table

[Source]

     # File lib/sequel/sql.rb, line 584
584:       def initialize(constant)
585:         @constant = constant
586:       end

[Validate]