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

Represents an SQL function call.

Methods

new  

Attributes

args  [R]  The array of arguments to pass to the function (may be blank)
f  [R]  The SQL function to call

Public Class methods

Set the functions and args to the given arguments

[Source]

     # File lib/sequel/sql.rb, line 763
763:       def initialize(f, *args)
764:         @f, @args = f, args
765:       end

[Validate]