Class Sequel::SQL::Function
In: lib/sequel/extensions/eval_inspect.rb
lib/sequel/sql.rb
Parent: Object

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 1110
1110:       def initialize(f, *args)
1111:         @f, @args = f, args
1112:       end

[Validate]