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 1646
1646:       def initialize(table, column)
1647:         @table = convert_identifier(table)
1648:         @column = convert_identifier(column)
1649:         freeze
1650:       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 1654
1654:       def function(*args)
1655:         Function.new(self, *args)
1656:       end

[Validate]