class Sequel::SQL::Function

  1. lib/sequel/sql.rb
Parent: SQL

Represents an SQL function call.

Methods

Public Class

  1. new

Public Instance

  1. args
  2. f

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

new (f, *args)

Set the functions and args to the given arguments

[show source]
# File lib/sequel/sql.rb, line 1210
def initialize(f, *args)
  @f, @args = f, args
end