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

Represents a qualified identifier (column with table or table with schema).

Methods

function   new  

Included Modules

QualifyingMethods

Attributes

column  [R]  The column/table referenced
table  [R]  The table/schema qualifying the reference

Public Class methods

Set the table and column to the given arguments

[Source]

      # File lib/sequel/sql.rb, line 1640
1640:       def initialize(table, column)
1641:         @table, @column = table, column
1642:       end

Public Instance methods

Create a Function using this identifier as the functions name, with the given args.

[Source]

      # File lib/sequel/sql.rb, line 1646
1646:       def function(*args)
1647:         Function.new(self, *args)
1648:       end

[Validate]