Methods

Class Index [+]

Quicksearch

Sequel::SQL::QualifyingMethods

Includes a qualify method that created QualifiedIdentifiers, used for qualifying column names with a table or table names with a schema.

Public Instance Methods

qualify(qualifier) click to toggle source

Qualify the receiver with the given qualifier (table for column/schema for table).

  :column.qualify(:table) # "table"."column"
  :table.qualify(:schema) # "schema"."table"
  :column.qualify(:table).qualify(:schema) # "schema"."table"."column"
     # File lib/sequel/sql.rb, line 782
782:       def qualify(qualifier)
783:         QualifiedIdentifier.new(qualifier, self)
784:       end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.