class Sequel::SQL::QualifiedIdentifier

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

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

Methods

Public Class

  1. new

Public Instance

  1. column
  2. table

Included modules

  1. QualifyingMethods

Attributes

column [R]

The column/table referenced

table [R]

The table/schema qualifying the reference

Public Class methods

new (table, column)

Set the table and column to the given arguments

[show source]
# File lib/sequel/sql.rb, line 1398
def initialize(table, column)
  @table, @column = table, column
end