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 1088
1088:       def initialize(f, *args)
1089:         @f, @args = f, args
1090:       end

[Validate]